0
Answer

how to take user defined tablename from a database ----query using odbc

Ask a question
srini vasan

srini vasan

19y
1.7k
1
hi 
 i used a sqlquery to select the user defined tables in database like this 

SELECT name FROM sysobjects WHERE type ='u'



when i use the same using odbc like the below it fails to retrieve to the table names

OdbcCommand cmd=new OdbcCommand("SELECT name FROM sysobjects WHERE type ='u' ",con);

thankx in advance
srini