首页上一页 1 下一页尾页 1 条记录 1/1页
《Visual C#项目开发实例自学手册》第三章类问题!!!
发表在C#图书答疑
2009-02-10
是否精华
是
否
版块置顶:
是
否
小科老师好!!!
本书第三章DataClass类里面,int n=0是什么意思呢??如果是判断数据库的打开与否的返回值,那么能不能用boolen来定义呢???谢谢!
#region 关闭数据库连接
/// <summary>
/// 关闭数据库连接
/// </summary>
/// <returns></returns>
public int con_close()
{
int n = 0;
if (My_con.State == ConnectionState.Open)//判断是否打开数据库的连接
{
My_con.Close();//关闭数据库的连接
My_con.Dispose();//释放My_con变量的所有空间
n = 0;
}
else
n = 1;
return;
}
#endregion
本书第三章DataClass类里面,int n=0是什么意思呢??如果是判断数据库的打开与否的返回值,那么能不能用boolen来定义呢???谢谢!
#region 关闭数据库连接
/// <summary>
/// 关闭数据库连接
/// </summary>
/// <returns></returns>
public int con_close()
{
int n = 0;
if (My_con.State == ConnectionState.Open)//判断是否打开数据库的连接
{
My_con.Close();//关闭数据库的连接
My_con.Dispose();//释放My_con变量的所有空间
n = 0;
}
else
n = 1;
return;
}
#endregion