系统标准SQL连接 Class
Posted xtwkh1973
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了系统标准SQL连接 Class相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
windows server2003 R2 标准版的操作系统,安装了sql2005标准版后老是中毒