Dear All
Please if any one can show me or can browse to the link
which is connection string to ACCESSDB and
deleting,updating and adding new records to the AccessDB
Many Thanks in advance
salih
Printable View
Dear All
Please if any one can show me or can browse to the link
which is connection string to ACCESSDB and
deleting,updating and adding new records to the AccessDB
Many Thanks in advance
salih
Connection strings
http://www.connectionstrings.com/
Using ODBC via ADO
http://www.dotnetjunkies.com/tutoria...tutorialid=379
Using ODBC.NET
http://support.microsoft.com/default...b;en-us;310985
Editing :
Open the connection , set your UPDATE sqlstring ,declare a OLEcommand like so :
Dim MyCommand As New OleDbCommand(sqlstr, MyConnection)
finally , execute the command like so :
MyCommand.ExecuteNonQuery