return Convert.ToInt32(ds.Tables[0].Rows[0][0].ToString());出现如下错误
代码如下publicstaticintExcuteMaxID(stringstr){SqlConnectionmyCn=newSqlConnection(sConn);S...
代码如下
public static int ExcuteMaxID(string str)
{
SqlConnection myCn = new SqlConnection(sConn);
SqlDataAdapter sa = new SqlDataAdapter(str ,myCn);
DataSet ds = new DataSet();
try
{
myCn.Open();
sa.Fill(ds);
if (ds!=null&&ds.Tables[0].Rows.Count>0)
return Convert.ToInt32(ds.Tables[0].Rows[0][0].ToString());//这一行出现错误了
else
return 0;
}
catch (SqlException e)
{
throw new Exception(e.Message);
}
finally
{
myCn.Close();
}
}
str的语句为select max(address_code) from addr_man;
其中address_code在数据库里没有字母字符,只有数字字符 展开
public static int ExcuteMaxID(string str)
{
SqlConnection myCn = new SqlConnection(sConn);
SqlDataAdapter sa = new SqlDataAdapter(str ,myCn);
DataSet ds = new DataSet();
try
{
myCn.Open();
sa.Fill(ds);
if (ds!=null&&ds.Tables[0].Rows.Count>0)
return Convert.ToInt32(ds.Tables[0].Rows[0][0].ToString());//这一行出现错误了
else
return 0;
}
catch (SqlException e)
{
throw new Exception(e.Message);
}
finally
{
myCn.Close();
}
}
str的语句为select max(address_code) from addr_man;
其中address_code在数据库里没有字母字符,只有数字字符 展开
威孚半导体技术
2024-08-19 广告
2024-08-19 广告
威孚(苏州)半导体技术有限公司是一家专注生产、研发、销售晶圆传输设备整机模块(EFEM/SORTER)及核心零部件的高科技半导体公司。公司核心团队均拥有多年半导体行业从业经验,其中技术团队成员博士、硕士学历占比80%以上,依托丰富的软件底层...
点击进入详情页
本回答由威孚半导体技术提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询