c#中在单个Oracle命令中执行多个查询

本文关键字:查询 执行 Oracle 单个 命令 | 更新日期: 2023-09-27 18:07:12

我使用的是visual studio 2013和oracle数据库。我想执行多个创建表查询一次在单个oraclecmand是可能的吗?我正在尝试以下但不工作

OracleCommand cmd = new OracleCommand();
cmd.Connection = con;
cmd.CommandText = "create table test(name varchar2(50) not null)"+"create table test2(name varchar2(50) not null)"; 
//+ "create table test3(name varchar2(50) not null)"+"create table test3(name varchar2(50) not null)";
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();

command . executenonquery ();

c#中在单个Oracle命令中执行多个查询

为了执行多个命令,将它们放在begin ... end;块中。对于DDL语句(如create table),使用execute immediate运行它们。下面的代码对我有效:

OracleConnection con = new OracleConnection(connectionString);
con.Open();
OracleCommand cmd = new OracleCommand();
cmd.Connection = con;
cmd.CommandText =
    "begin " +
    "  execute immediate 'create table test1(name varchar2(50) not null)';" +
    "  execute immediate 'create table test2(name varchar2(50) not null)';" +
    "end;";
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
con.Close();

更多信息:使用Oracle执行SQL脚本。ODP

你试过了吗

cmd.CommandText = "create table test(name varchar2(50) not null);"+"create table test2(name varchar2(50) not null);";