我有以下 oracleCommand 并希望在下面进行更改但有错误...除了我的 +item+ 和 + txtSrcUserID.Text.ToUpper() + 。在 oracle 命令中。如何将它们添加到我的命令中?
原来的
foreach (string Items in listBox39.Items)
{
using (OracleCommand crtCommand = new OracleCommand(@"SELECT REGEXP_REPLACE ( REPLACE ( dbms_metadata.get_ddl ('PROCEDURE', 'HELL_'), '""USER1"".'),'^\s+', NULL, 1, 0, 'm') FROM dual", conn1))
{
}
}
我喜欢做类似于下面的
foreach (string Items in listBox39.Items)
{
using (OracleCommand crtCommand = new OracleCommand(@"SELECT REGEXP_REPLACE ( REPLACE ( dbms_metadata.get_ddl ('PROCEDURE', '+ Items +'), '"" + txtSrcUserID.Text.ToUpper() + "".'),'^\s+', NULL, 1, 0, 'm') FROM dual", conn1))
{
}
}