Hi all,
I'm using the code below to read tables and views from a SQL database, this works for Oracle tables but not Oracle views, does anyone know why it wouldn't work and how I can fix it?
cmdList = new OdbcCommand("select name, user_name(uid) from sysobjects where type='U' or type='V'", cn);
Thanks