ORA-00911: nieprawidłowy znak

Tworzę dwie tabele w mojej bazie danych Oracle (11g) w następujący sposób:

    create table "test" ("id" int);
    create table test ("id" int);

W moim programie C # występuje problem:

    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(); 

dla obu command.ExecuteReader () mam błąd „ORA-00911: nieprawidłowy znak”.

questionAnswers(4)

yourAnswerToTheQuestion