Update command?
-
Is it possible to execute Update command in C#.net? I worked on Insert,select and Delete commands. If yes means how it is possible?
-
Is it possible to execute Update command in C#.net? I worked on Insert,select and Delete commands. If yes means how it is possible?
do you mean....Can you execute an Update statement (against a supporting sql database) from a C# application?
Mark Graham (MCP) // The Doodler blogging about C#, Asp.Net, and Design Patterns at: csCoffee[^] and contributing at dotNet Notepad[^]
-
Is it possible to execute Update command in C#.net? I worked on Insert,select and Delete commands. If yes means how it is possible?
create a command object with appropriate connection to the database (It may be SQLClient, OracleClient, OleDb, Odbc etc) and run cmd.ExecuteNonQuery("update statement") :rose:
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templates