ODBC and insert statement...

  • Thread starter Thread starter Jimmy
  • Start date Start date
J

Jimmy

I am using ODBC namespace to communicate with my legacy system. since there
are no stored procedure supported in the legacy system, I would like to know
which object I should use to insert a new record to legacy system using ODBC
namespace objects.
Whenever I use SQL Server as backend I have used command object and called
the stored procedure to update the database.
Please advce.
Jimmy
 
You can still use the command object..just set its CommandType property to
..Text
 
Hi William,

William Ryan eMVP said:
You can still use the command object..just set its CommandType property to
.Text

You probably mean .StoredProcedure as op was using stored procs. :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top