Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple sqlce database, trying to update a row in a table. The following command works:

UPDATE ConsoleUsage SET TotalCircuits = 123

But the above command updates all rows, so what I want is this:

UPDATE ConsoleUsage SET TotalCircuits = 123 WHERE Index = 912

The intent is to update a single row in the table. But this command fails, giving the following cryptic error message (here using MS suggested format):

Error Code: 80040E37
Message   :  [ UPDATE ConsoleUsage SET TotalCircuits = 123 WHERE Index = 912 ]
Minor Err.: 0
Source    : SQL Server 2005 Mobile Edition ADO.NET Data Provider
Err. Par. : UPDATE ConsoleUsage SET TotalCircuits = 123 WHERE Index = 912

The "Index" column is an index to the table, I've checked all spelling and I've tried this both with and without cmd.CommandType = CommandType.TableDirect; and cmd.IndexName = "MainIndex";

What am I missing?

share|improve this question
Update: tried using a different field in the WHERE clause, this worked. So there's something wrong with my "Index" column, either its name or its type - it's a "Primary Key" (but should that matter?), type smallint. – toml Dec 30 '09 at 14:12
Change the name "Index" to something else ("Id" for example) and try. Is it work? – Sasha Dec 30 '09 at 14:25
I added a new column, named DateCode, same data as Index but not a Primary Key, this now works. I'll leave Index in place since all tables (I think) must have a primary key. Not worried about a bit of wasted space, this table does not have many rows. – toml Dec 30 '09 at 16:17

2 Answers

I think "Index" is a reserved word. Try surrounding it with brackets:

UPDATE ConsoleUsage SET TotalCircuits = 123 WHERE [Index] = 912
share|improve this answer
Tried that, same result – toml Dec 29 '09 at 19:33

Without knowing the table structure (could you post the create script for the table?) here are a few things I would try:

put square brackets ([]) around all columns and table name to escape them out, just in case put the schema name of the table to the table, dbo.[ConsoleUsage] instead of [ConsoleUsage] check to see if [Index] is a char field or not, use '912' instead of 912 if it is

Try converting statement a little: UPDATE T SET TotalCircuits = 123 FROM dbo.[ConsoleUsage] T WHERE T.[Index] = 912

share|improve this answer
Tried all of these, same result. – toml Dec 30 '09 at 13:56
Could you post the create script for the table? – Sasha Dec 30 '09 at 14:05
Not sure where to find the "create script", I created the table in designer (using studio '05), and I copy the individual get/set methods and Add method from the dataset.Designer.cs file (which is created by studio from a .xsd file which I populate by dragging tables into it from the server explorer) into my code. – toml Dec 30 '09 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.