WebServices调用数据库存储过程
时间:2007-12-23 来源:不详 作者:迈克DB
DataTable table1 = new DataTable();
ds.Tables.Add(table1);
ds.Tables[0].Columns.Add("p_zt");
ds.Tables[0].Columns.Add("p_errordesc");
DataRow dr = ds.Tables[0].NewRow();
dr[0] = str1;
dr[1] = str2;
ds.Tables[0].Rows.Add(dr);
return ds;
}
catch(Exception)
{
strp_zt = "";
strp_errordesc = "";
return null;
}
finally
{
oleConn.Close();
oleConn.Dispose();
}
}
#endregion
}
} asp">存储过程
上一篇:DB2 下一篇:Java数据库程序中的数据库存储过程设计
文章评论
共有位Admini5网友发表了评论 查看完整内容