Property | Type | Description | |
---|---|---|---|
conn | string |
Method | Description | |
---|---|---|
Close ( ) : void |
关闭数据库
|
|
DBLook ( string strSQL ) : string |
执行SQL语句,取出SQL语句的第一行第一列的值
|
|
DataConn ( ) : System |
Connection 构造函数
|
|
DataPile ( string strsql, DataSet objset, string strtable ) : void | ||
ExeSQLGetID ( string strSQL ) : int |
执行操作型SQL,并返回自动增值ID
|
|
ExecuteDBSQL ( string DBName, string str_Sql, bool blnClose ) : bool |
先设置当前数据库,再执行SQL语句,并返回是否成功
|
|
ExecuteProc ( ) : bool |
执行存储过程
|
|
ExecuteProcForTable ( string strProcName, |
执行存储过程返回datatable
|
|
ExecuteSQL ( SqlCommand cmd, bool blnClose ) : bool |
执行SQL语句,并返回是否成功
|
|
ExecuteSQL ( string str_Sql, bool blnClose ) : bool |
执行SQL语句,并返回是否成功
|
|
ExecuteSQLForCount ( string str_Sql, bool blnClose ) : int |
执行SQL语句,并返回影响的行数
|
|
GetConnStr ( string DBName ) : string |
根据数据库名返回数据库连接字符串的
|
|
GetDataSet ( string strSQL ) : DataSet |
建立DataSet对象,用记录填充或构架(如果必要)DataSet对象,DataSet即是数据在内存的缓存,并返回
|
|
GetDataSet ( string strSQL, |
建立DataSet对象,用记录填充或构架(如果必要)DataSet对象,DataSet即是数据在内存的缓存,并返回
|
|
GetDataTable ( string strSQL ) : DataTable |
返回指定查询SQL的DataTable对象
|
|
GetDataTable ( string strSQL, |
返回指定查询SQL的DataTable对象
|
|
GetDataView ( string strSQL ) : DataView |
获得dataview
|
|
GetRowCount ( string strSQL ) : int |
获得符合该Sql语句的表记录数
|
|
GetRowCount ( string strSQL, |
获得符合该Sql语句的表记录数
|
|
GetRows ( string strSQL ) : System.Data.DataRowCollection |
获得包含在DataSet对象的映谢表集合中的index为0的映谢表
|
|
GetRows ( string strSQL, |
获得包含在DataSet对象的映谢表集合中的index为0的映谢表
|
|
GetWebConfigValue ( string sPara ) : string |
取出配置文件中的指定值
|
|
MsgBox ( Page webform, string msg ) : void |
简单提示框 20140318 小张添加
|
|
OpenDB ( ) : void |
和数据库建立连接
|
|
RunSqlTransaction ( string sSQL ) : bool |
执行事物
|
|
SaveFileToImage ( string strSQL, string DBName, byte byFileData ) : bool |
把字节流存到数据库
|
|
sqlDataReader ( string strSQL ) : System.Data.SqlClient.SqlDataReader |
public DBLook ( string strSQL ) : string | ||
strSQL | string | 要执行的SQL语句 |
return | string |
public DataPile ( string strsql, DataSet objset, string strtable ) : void | ||
strsql | string | |
objset | DataSet | |
strtable | string | |
return | void |
public ExecuteDBSQL ( string DBName, string str_Sql, bool blnClose ) : bool | ||
DBName | string | |
str_Sql | string | |
blnClose | bool | |
return | bool |
public ExecuteProcForTable ( string strProcName, |
||
strProcName | string | 存储过程名称 |
coll | 存储过程参数列表 | |
return | DataTable |
public ExecuteSQL ( SqlCommand cmd, bool blnClose ) : bool | ||
cmd | SqlCommand | |
blnClose | bool | |
return | bool |
public ExecuteSQL ( string str_Sql, bool blnClose ) : bool | ||
str_Sql | string | |
blnClose | bool | |
return | bool |
public ExecuteSQLForCount ( string str_Sql, bool blnClose ) : int | ||
str_Sql | string | |
blnClose | bool | |
return | int |
public GetDataSet ( string strSQL ) : DataSet | ||
strSQL | string | |
return | DataSet |
public GetDataSet ( string strSQL, |
||
strSQL | string | |
coll | ||
return | DataSet |
public GetDataTable ( string strSQL ) : DataTable | ||
strSQL | string | |
return | DataTable |
public GetDataTable ( string strSQL, |
||
strSQL | string | |
coll | ||
return | DataTable |
public GetDataView ( string strSQL ) : DataView | ||
strSQL | string | |
return | DataView |
public GetRowCount ( string strSQL, |
||
strSQL | string | |
coll | ||
return | int |
public GetRows ( string strSQL ) : System.Data.DataRowCollection | ||
strSQL | string | |
return | System.Data.DataRowCollection |
public GetRows ( string strSQL, |
||
strSQL | string | |
coll | ||
return | System.Data.DataRowCollection |
public GetWebConfigValue ( string sPara ) : string | ||
sPara | string | |
return | string |
public MsgBox ( Page webform, string msg ) : void | ||
webform | Page | |
msg | string | |
return | void |
public RunSqlTransaction ( string sSQL ) : bool | ||
sSQL | string | |
return | bool |
public SaveFileToImage ( string strSQL, string DBName, byte byFileData ) : bool | ||
strSQL | string | sql语句 |
DBName | string | |
byFileData | byte | 字节流 |
return | bool |
public sqlDataReader ( string strSQL ) : System.Data.SqlClient.SqlDataReader | ||
strSQL | string | |
return | System.Data.SqlClient.SqlDataReader |