I am using Dbase IV Databases with VB6.
The problem I am confronted with is that, with ADODB, we use connections. The way I understand it is, a connection is linked to a specific directory. With that connection, we can make query using recordset objects. To make those queries, we are confined to the directory with which the connection is linked.
The problem I have been confronted with is that I have another table from another DB located in another directory. I want to use that other table with a table from the first DB to make a query. I tried many different ways, but I keep getting an ODBC error because I am trying to link my query with that table located outside the connection directory.
I am used to the way Delphi 5 works which is that we don't work with connections but database and table ojects. It does not matter where the original table is located physically since we are working with the object. We can then make queries the way you explained it to me in your reply.
I have looked for a similar functionning in VB6 but haven't found anything. I understand, with your reply, that it does exist and it is possible. Some hints would be welcome.
Damby