dll for SQL query

  • Thread starter Thread starter Ralph
  • Start date Start date
R

Ralph

Hello to all,

Does a dll exist to call a SQL query from an outside piece of code, for
example from VB or from VC++?

TIA,

Ralph in Boise
 
Ralph said:
Does a dll exist to call a SQL query from an outside piece of code, for
example from VB or from VC++?


You have to have a reference to a data access library,
probably either DAO for Jet or ADO for most any db engine.

Both of those libraries include an Execute method that will
run the SQL statement.
 
Back
Top