I create two tables in my oracle database (11g) as follows:
create table "test" ("id" int); create table test ("id" int);
Then there is a problem in my C # program:
OracleConnection conn = new OracleConnection(-myConnectionString-); conn.Open(); OracleCommand command = new OracleCommand("select * from test;", conn); var v = command.ExecuteReader(); OracleCommand command = new OracleCommand("select * from \"test\";", conn); var v = command.ExecuteReader();
for command command.ExecuteReader () I have the error "ORA-00911: invalid character".
c # system.data.oracleclient
XlbrlX Sep 04 '12 at 11:01 2012-09-04 11:01
source share