我在程序里想用 这个语句选出tablename和comments,然后把它绑定的dataSet里,但我得到的dataSet却是空的,为什么?
 DataSet ds = new DataSet();OleDbDataAdapter dscommand = new OleDbDataAdapter();dscommand.SelectCommand = new OleDbCommand( ( "select table_name as DBTableName, comments as DBTableDescription from dba_tab_comments where owner = '" + DBTableData.ORACLEOWNER_FIELD + "'" ), ConnectOracleDB() );

dscommand.Fill( ds );