Method | Description | |
---|---|---|
CloseConnection ( ) : void |
关闭连接
|
|
ExecuteDataTable ( string procName, string tblName ) : |
返回DataTable
|
|
ExecuteNonQuery ( string commandText ) : int |
执行ExecuteNonQuery
|
|
ExecuteReader ( string commandText ) : System.Data.SqlClient.SqlDataReader |
执行ExecuteReader
|
|
ExecuteScalar ( string commandText ) : object |
执行ExecuteScalar
|
|
SqlHelper ( ) : System |
构造函数
|
Method | Description | |
---|---|---|
ForeachParames ( |
给Command对象填充参数
|
|
OpenConnection ( ) : |
打开连接
|
public ExecuteDataTable ( string procName, string tblName ) : |
||
procName | string | 存储过程名 |
tblName | string | 表名 |
return |
public ExecuteNonQuery ( string commandText ) : int | ||
commandText | string | 存储过程名 |
return | int |
public ExecuteReader ( string commandText ) : System.Data.SqlClient.SqlDataReader | ||
commandText | string | 存储过程名 |
return | System.Data.SqlClient.SqlDataReader |
public ExecuteScalar ( string commandText ) : object | ||
commandText | string | 存储过程名 |
return | object |