in reply to Accessing Microsoft Access Databases
suppose you have a query called "TotalSales". to get the results through ODBC, you would use this SQL:
you would do the same with a table called "TotalSales".SELECT * FROM TotalSales;
i'm not sure how the placeholder stuff in DBI interacts with ODBC, since the underlying datasource is potentially quite exotic (though not in the case of Jet/Access).
|
|---|