running sql against a table

  • Thread starter Thread starter Rod
  • Start date Start date
R

Rod

I would like to be able to do the equivalent of the Access command

DoCmd.RunSQL mySQLstring

on tables I have in my dotnet application.

The particular case I have in mind is updating one table using data from the
other.
Is this possible and if so how??



many thanks in advance

Rod
 
No, there is no exact equivalent in ADO.NET. You can execute a
command, or use a DataAdapter to modify data from your client
application to a data source. For more information, see "Performing
Database Operations and Modifying Data" in the VS.NET help.

--Mary
 
Back
Top