Access数据库中怎么样判断select语句执行成功
怎么样判断在accesss数据库中执行select语句时读出了access数据库中的数据,我用的是c#...
怎么样判断在accesss数据库中执行select语句时读出了access数据库中的数据 ,我用的是c#
展开
2个回答
展开全部
LZ你看看清楚好不好,我给你写的就是C#!
难道看不懂么?
这个太简单了!
给你2个我曾经写的做为参考吧
//查询所有
根据dataset判断下是否成功
public DataSet getAll()
{
//parm 1客户名称,2收支种类,3备注信息,4应收金额,5业务员
String sql = "select GetPayUser,GetPaySum,GetPayReason,GetPayRemark,GetPayMan from GetPay";
try
{
this.getOpen();
oddap = new OleDbDataAdapter(sql, odcon);
ds = new DataSet();
oddap.Fill(ds);
return ds;
}
catch (Exception)
{
this.getClose();
return null;
}
}
/**
*
* 删除应收应付记录(根据ID)
*/
1 代表成功 2 代表失败 3代表异常
public int deleteYingshouyingfu(int id)
{
String del = "delete from GetPay where GetPayIndex = " + id;
try
{
this.getOpen();
cmd = new OleDbCommand(del,odcon);
int i = cmd.ExecuteNonQuery();
return -1 != i ? 1 : 2;
}
catch (Exception)
{
this.getClose();
return 3;
}
}
难道看不懂么?
这个太简单了!
给你2个我曾经写的做为参考吧
//查询所有
根据dataset判断下是否成功
public DataSet getAll()
{
//parm 1客户名称,2收支种类,3备注信息,4应收金额,5业务员
String sql = "select GetPayUser,GetPaySum,GetPayReason,GetPayRemark,GetPayMan from GetPay";
try
{
this.getOpen();
oddap = new OleDbDataAdapter(sql, odcon);
ds = new DataSet();
oddap.Fill(ds);
return ds;
}
catch (Exception)
{
this.getClose();
return null;
}
}
/**
*
* 删除应收应付记录(根据ID)
*/
1 代表成功 2 代表失败 3代表异常
public int deleteYingshouyingfu(int id)
{
String del = "delete from GetPay where GetPayIndex = " + id;
try
{
this.getOpen();
cmd = new OleDbCommand(del,odcon);
int i = cmd.ExecuteNonQuery();
return -1 != i ? 1 : 2;
}
catch (Exception)
{
this.getClose();
return 3;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询