Để thực thi nhiều lệnh, hãy đặt chúng vào begin ... end;
block.And cho các câu lệnh DDL (như create table
) chạy chúng với execute immediate
. Mã này phù hợp với tôi:
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();
Thông tin thêm:Thực thi SQL Scripts với Oracle.ODP