以下是我的基本创建表语句:
CREATE TABLE "TESTTABLE" ( "Sub Continent" CLOB,"Continent" CLOB,"Date" DATE,"Members" NUMBER );
这是 C# 代码:
OracleConnection myConnection = new OracleConnection(connectionString);
myConnection.Open();
if (myConnection.State == System.Data.ConnectionState.Open){
OracleCommand myCommand = new OracleCommand(sql_command, myConnection);
OracleDataReader myReader = myCommand.ExecuteReader();
myCommand.Dispose();
myReader.Dispose();
}
myConnection.Close();
这会产生以下错误: ORA-00922:缺少或无效选项
我知道连接字符串很好,我已经完成了选择语句和 GetSchema 调用。我能够将上述查询复制粘贴到 SQL Developer 中,并且它运行成功。我目前正在运行 Oracle 12c。而且我不知道我做错了什么。