Hi RL,
You should still be able to use your copy of Access 2000 to run queries in
this Access 97 database, without modifying the original database in any way.
Create a new database in Access 2000. Then use File > Get External Date >
Link Tables... to link to one or more tables in the existing Access 97 .mdb
file. You can then create queries in Access 2000 against the linked tables,
as though they were local tables. You can use the default QBE (Query by
Example) grid, or if you're feeling really adventurous, you can switch to SQL
View and write the SQL statements directly. Once you have a query working
properly, you can switch to SQL View, copy the SQL Statement, and paste it
into your VB.Net app. For the most part, it should work as written. You'll
have to make slight adjustments for any variables that you wish to use as
criteria, but that's no different from pasting the SQL statement into a new
VBA procedure.
Tom
____________________________________
:
Hi Tom,
We have a very old system along with our attendance controller, which uses
Access 97 as its database.
Now we want to do a 2nd development using VB.NET, (and my default .MDB
reader is Office 2000). After checking its structure cannot be modified,
otherwise the original program cannot work any more.
So I want to use a standalone utility to operate that Access97 MDB and run
sql, mostly are select statements, before coding in .NET.