| re: SQL in place of Adodc. How is it done?
The process is:
You make the connection from your front end GUI (written in VB6?) using ADODC.
SQL does not provide any connection capabilities. SQL is an international query language standard that is platform independent. That means that it doesn't matter which program you are using as a database manager, the basic SQL syntax stays the same as any other Relational DataBase Management System... Various software companies have added different specific high-level implementations to the basic SQL standard (MS' flavor is called T-SQL or Transact SQL), however they still do not provide the connection code.
A likely scenario is that you create the connection using a command from VB6. In the next lines of code you 'query' the database using an SQL statement which is going to take the form of: "SELECT [something] FROM [sometable] WHERE [somecondition]"
Regards,
Scott
|