On 10/7/07, Virtuoso Maintainer wrote:
> I am currently in contact with the pdo_odbc module owner. I will discuss
> with him the current implementation of pdo_odbc and see if we can put
> some more calls into this implementation. I will also see if we can
> introduce a setting for the php odbc mod
Hi Sören,
I spend some time today trying to figure out how I can check if there
exists a table with a certain name. For the PHP ODBC module there
exists the function odbc_tables(), which works. However, due to the
problem of the PHP ODBC module with TOP queries I'm now using the
pdo_odbc module,
On 10/6/07, Yrjänä Rankka wrote:
> Here's one way I've used before. To query for a specific table DB.DBA.FUBAR:
> select 1 from sys_keys where key_table = 'DB.DBA.FUBAR';
Thanks that helped!
Sören
Sören,
Here's one way I've used before. To query for a specific table DB.DBA.FUBAR:
select 1 from sys_keys where key_table = 'DB.DBA.FUBAR';
Have fun!
Yrjänä
Rajeev J Sebastian wrote:
> There is a "tables;" isql command for it ... perhaps thats what you want ?
>
> Regards
> Rajeev J Sebastian
There is a "tables;" isql command for it ... perhaps thats what you want ?
Regards
Rajeev J Sebastian
On 10/6/07, Sören Auer wrote:
> Hi all,
>
> I spend some time today trying to figure out how I can check if there
> exists a table with a certain name. For the PHP ODBC module there
> exists the
Hi all,
I spend some time today trying to figure out how I can check if there
exists a table with a certain name. For the PHP ODBC module there
exists the function odbc_tables(), which works. However, due to the
problem of the PHP ODBC module with TOP queries I'm now using the
pdo_odbc module, whi