i'am trying to update a row in a table using :

command.ExecuteNoQuery()

it's not giving me an error but it's not updating the row

This is my code :

Dim req As String = "Update Table Set Id= 5"
Dim cmd As New OleDb.OleDbCommand(req, connect())
cmd.ExecuteNonQuery()
disconnect()

thanks

link|improve this question

What command are you executing? – alejandrobog May 28 '10 at 17:23
I'm executing an Update command. – Wassim May 28 '10 at 17:33
3  
You know that sql query will update every row in your table, and do you have a plan for reclaiming connections if an exception is thrown by your query (right now your disconnect() function wouldn't be called) – Joel Coehoorn May 28 '10 at 17:47
I know but this query is not doing anything, even if it's working with INSERT command. – Wassim May 28 '10 at 18:10
what is the error being thrown? Have you tried running that sql directly against the db? – earthling May 28 '10 at 20:24
feedback

2 Answers

Make sure that ID isn't an IDENTITY column.

link|improve this answer
It's not an identity column. – Wassim May 28 '10 at 18:57
what is your table's name? – kervin May 28 '10 at 19:22
feedback

the problem is that the query was too slow with MS Access.

Now it's working fine MS SQL Server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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