码迷,mamicode.com
首页 > 数据库 > 详细

系统标准SQL连接 Class

时间:2019-06-10 13:54:17      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:new   void   class   ase   inf   user   ndt   null   init   

class WL_SystemStdConnectionSql
{
    System.Data.SqlClient.SqlConnection     cnn;
    System.Data.SqlClient.SqlCommand        command;
    System.Data.SqlClient.SqlDataReader     reader;
}
void close()
{
    ;
    cnn.Close();
    cnn = null;
void ExecuteNonQuery(str    strsql)
{
    ;
    if (!strsql)
        throw error("SQL语句不存在");
    command.set_CommandText(strsql);
    command.ExecuteNonQuery();
}
void ExecuteReader(str    strsql)
{
    ;
    if (!strsql)
        throw error("SQL语句不存在");
    command.set_CommandText(strsql);
    reader = command.ExecuteReader();
void open(str           _serverId = sysSqlSystemInfo::construct().getLoginServer(), 
               str           _dataId   = sysSqlSystemInfo::construct().getloginDatabase(),
               str           _userId   = "xxxx",
               str           _pwd      = "********")
{
    str     connectionStr;
    ;
    connectionStr = "Data Source="+ _serverId + "; Initial Catalog=" + _dataId +";" +
                    " Persist Security Info = True;User ID=" + _userId +"; Password=" + _pwd;
    cnn = new System.Data.SqlClient.SqlConnection(connectionStr);
    cnn.Open();
    command = cnn.CreateCommand();
    command.set_CommandTimeout(3600);
}
public System.Data.SqlClient.SqlCommand parmCommand(System.Data.SqlClient.SqlCommand _command = command)
{
    ;
    command = _command;
    return command;
}
public System.Data.SqlClient.SqlDataReader parmReader(System.Data.SqlClient.SqlDataReader _reader = reader)
{
    ;
    reader = _reader;
    return reader;
}

 

 

系统标准SQL连接 Class

标签:new   void   class   ase   inf   user   ndt   null   init   

原文地址:https://www.cnblogs.com/xtwkh1973/p/10997029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!