17,134
社区成员
发帖
与我相关
我的任务
分享
Connection=new OracleConnection(this.ConnectString());
Connection.Open();
OracleCommand cmd = Connection.CreateCommand();
cmd.CommandType=CommandType.Text;
cmd.CommandText=al.VRCONTENT;
try {
cmd.ExecuteNonQuery();
} catch(Exception e) {
throw e;
} finally {
Connection.Close();
}
