In SQL Server you can write SQL to check if a table exists. How can I do that for ADS?
I have a need to write some Delphi code to say if table exists do this else this...
|
In SQL Server you can write SQL to check if a table exists. How can I do that for ADS? I have a need to write some Delphi code to say if table exists do this else this...
| ||||
|
feedback
|
|
The system procedure sp_GetTables can tell you what tables exist in the directory that you connected to: EXECUTE PROCEDURE sp_GetTables( NULL, NULL, NULL, 'TABLE' ) A non-SQL solution would be to use the AdsCheckExistence API. | |||||||
feedback
|
|
I'm not ADS user, so I can't answer in detail. See http://devzone.advantagedatabase.com/dz/webhelp/Advantage10.1/index.html The're is system.tables view with information about tables. I suppose you also can write SQL query to check a table. | |||
feedback
|
|
I like Peter's answer, but depending on what it is you need to do, you might be looking for a TRY, CATCH, FINALLY statement.
| |||
|
feedback
|
|
Delphi code:
this simple function use existing TADOConnection end; | |||
|
feedback
|