我正在开发桌面 C# 应用程序。我的领域之一是CLOB类型。我输入的数据在基于 C# 的变量中分配得非常好,但在 Oracle 中存储值时,它将数字存储为“?”。例如,如果一个字符串是hi123,在存储时它会变成hi???
它只发生在数字上,阿拉伯文本中的其余文本保存得很好。
运行查询时:
select dump(CONTENT) from MyTable
给出错误:
[Err] ORA-00932: inconsistent datatypes: expected - got CLOB
下面是插入 CLOB 的代码
public void InsertCLOB(string SQLStatement, string str)
{
System.Data.OracleClient.OracleDataReader rstOracle = null;
System.Data.OracleClient.OracleCommand sqlCommandOracle = null;
System.Data.OracleClient.OracleTransaction txn = null;
System.Data.OracleClient.OracleLob clob = null;
try
{
if (SQLStatement.Length > 0)
{
if (myConnection.State.ToString().Equals("Open"))
{
byte[] newvalue = System.Text.Encoding.Unicode.GetBytes(str);
sqlCommandOracle =
new System.Data.OracleClient.OracleCommand(SQLStatement, myConnection);
rstOracle = sqlCommandOracle.ExecuteReader();
rstOracle.Read();
txn = myConnection.BeginTransaction();
clob = rstOracle.GetOracleLob(0);
clob.Write(newvalue, 0, newvalue.Length);
txn.Commit();
Console.WriteLine("CLOB UPDATED");
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.TargetSite + " - " + ex.Message);
}
finally
{
sqlCommandOracle.Dispose();
rstOracle.Close();
txn.Dispose();
clob.Close();
}
}