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