如果我在MSDAORA OleDB Provider上执行以下SQL,则运行正常。
BEGIN
MY_PACKAGE_NAME.MY_PROCEDURE_NAME('value1', 'value2');
EXECUTE IMMEDIATE 'CREATE TABLE MY_TABLE_NAME as select
MY_ID ID,
MY_NAME NAME
from
MY_OTHER_TABLE';
END;
但是由于其他原因我正在为Oracle.DataAccess.dll更改它,现在我收到了这个错误:
ORA-06550: line 1, column 6:
PLS-00103: Encountered the symbol "" when expecting one of the following:
begin case declare exit for goto if loop mod null pragma
raise return select update while with <an identifier>
<a double-quoted delimited-identifier> <a bind variable> <<
close current delete fetch lock insert open rollback
savepoint set sql execute commit forall merge pipe
The symbol "" was ignored.
ORA-06550: line 2, column 52:
PLS-00103: Encountered the symbol "" when expecting one of the following:
begin case declare end exception exit for goto if loop mod
null pragma raise return select update while with
<an identifier> <a double-quoted delimited-id
ORA-06550: line 8, column 60:
PLS-00103: Encountered the symbol "" when expecting one of the following:
begin case declare end exception exit for goto if loop mod
null pragma raise return select update while with
<an identifier> <a double-quoted delimited-id
我做错了什么?
更新
.NET代码如下
Public Function ExecuteNonQuery(ByVal sql As String, Optional ByVal parameters As Dictionary(Of String, Object) = Nothing, _
Optional ByVal transaction As DbTransaction = Nothing) _
As Integer Implements IDataAccess.ExecuteNonQuery
Dim cmd As OracleCommand
Dim result As Integer = -1
cmd = New OracleCommand(sql, conn)
cmd.CommandType = CommandType.Text
cmd.CommandTimeout = 86400
Try
result = cmd.ExecuteNonQuery()
Catch ex As System.Exception
ex.FillDatabaseExceptionData(cmd)
Throw
'Finally
' CloseCommand(cmd)
End Try
Return result
End Function
答案 0 :(得分:2)
在命令文本中替换\ n \ n,因为odp.net does not handle Windows new lines well
sql = sql.Replace(Environment.NewLine, vbLf)
cmd = New OracleCommand(sql, conn)