hello,
I am migrating from BDE to ADO. I have the following BDE Code
try
{
Session->GetTableNames(database->DatabaseName, "", false, false, TableList);
if (TableList->IndexOf(TableName) >= 0)
{
retVal = true;
}
}
catch(EDBEngineError &e)
{
}
delete TableList;
return retVal...