把对Accessl 数据操作写成了类
可以直接添加到项目中引用,快速建立或者小项目而言比较方便
举例(非查询语句):
添加货物
public int IntoDGoods(Entity.EGoods model)
{
SqlParameter[] para = new SqlParameter[]{
new SqlParameter("@GoodsID",model.GoodsID),
new SqlParameter("@GoodsName",model.GoodsName),
};
int result = 0;
try
{
result = DataSql.ExecuteNon(IntoStr, para, CommandType.Text);
}
catch
{
result = -1;
}
return result;
}
- 1
- 2
- 3
前往页