C# 클래스 DataConn, zcw

DataConn 的摘要说明
상속: System.Web.UI.Page
파일 보기 프로젝트 열기: jerrytan/zcw 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
conn string

공개 메소드들

메소드 설명
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, SqlParameter coll ) : DataTable

执行存储过程返回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, SqlParameter coll ) : DataSet

建立DataSet对象,用记录填充或构架(如果必要)DataSet对象,DataSet即是数据在内存的缓存,并返回

GetDataTable ( string strSQL ) : DataTable

返回指定查询SQL的DataTable对象

GetDataTable ( string strSQL, SqlParameter coll ) : DataTable

返回指定查询SQL的DataTable对象

GetDataView ( string strSQL ) : DataView

获得dataview

GetRowCount ( string strSQL ) : int

获得符合该Sql语句的表记录数

GetRowCount ( string strSQL, SqlParameter coll ) : int

获得符合该Sql语句的表记录数

GetRows ( string strSQL ) : System.Data.DataRowCollection

获得包含在DataSet对象的映谢表集合中的index为0的映谢表

GetRows ( string strSQL, SqlParameter coll ) : System.Data.DataRowCollection

获得包含在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

메소드 상세

Close() 공개 메소드

关闭数据库
public Close ( ) : void
리턴 void

DBLook() 공개 메소드

执行SQL语句,取出SQL语句的第一行第一列的值
public DBLook ( string strSQL ) : string
strSQL string 要执行的SQL语句
리턴 string

DataConn() 공개 메소드

Connection 构造函数
public DataConn ( ) : System
리턴 System

DataPile() 공개 메소드

public DataPile ( string strsql, DataSet objset, string strtable ) : void
strsql string
objset DataSet
strtable string
리턴 void

ExeSQLGetID() 공개 메소드

执行操作型SQL,并返回自动增值ID
public ExeSQLGetID ( string strSQL ) : int
strSQL string
리턴 int

ExecuteDBSQL() 공개 메소드

先设置当前数据库,再执行SQL语句,并返回是否成功
public ExecuteDBSQL ( string DBName, string str_Sql, bool blnClose ) : bool
DBName string
str_Sql string
blnClose bool
리턴 bool

ExecuteProc() 공개 메소드

执行存储过程
public ExecuteProc ( ) : bool
리턴 bool

ExecuteProcForTable() 공개 메소드

执行存储过程返回datatable
public ExecuteProcForTable ( string strProcName, SqlParameter coll ) : DataTable
strProcName string 存储过程名称
coll System.Data.SqlClient.SqlParameter 存储过程参数列表
리턴 DataTable

ExecuteSQL() 공개 메소드

执行SQL语句,并返回是否成功
public ExecuteSQL ( SqlCommand cmd, bool blnClose ) : bool
cmd SqlCommand
blnClose bool
리턴 bool

ExecuteSQL() 공개 메소드

执行SQL语句,并返回是否成功
public ExecuteSQL ( string str_Sql, bool blnClose ) : bool
str_Sql string
blnClose bool
리턴 bool

ExecuteSQLForCount() 공개 메소드

执行SQL语句,并返回影响的行数
public ExecuteSQLForCount ( string str_Sql, bool blnClose ) : int
str_Sql string
blnClose bool
리턴 int

GetConnStr() 공개 메소드

根据数据库名返回数据库连接字符串的
public GetConnStr ( string DBName ) : string
DBName string
리턴 string

GetDataSet() 공개 메소드

建立DataSet对象,用记录填充或构架(如果必要)DataSet对象,DataSet即是数据在内存的缓存,并返回
public GetDataSet ( string strSQL ) : DataSet
strSQL string
리턴 DataSet

GetDataSet() 공개 메소드

建立DataSet对象,用记录填充或构架(如果必要)DataSet对象,DataSet即是数据在内存的缓存,并返回
public GetDataSet ( string strSQL, SqlParameter coll ) : DataSet
strSQL string
coll System.Data.SqlClient.SqlParameter
리턴 DataSet

GetDataTable() 공개 메소드

返回指定查询SQL的DataTable对象
public GetDataTable ( string strSQL ) : DataTable
strSQL string
리턴 DataTable

GetDataTable() 공개 메소드

返回指定查询SQL的DataTable对象
public GetDataTable ( string strSQL, SqlParameter coll ) : DataTable
strSQL string
coll System.Data.SqlClient.SqlParameter
리턴 DataTable

GetDataView() 공개 메소드

获得dataview
public GetDataView ( string strSQL ) : DataView
strSQL string
리턴 DataView

GetRowCount() 공개 메소드

获得符合该Sql语句的表记录数
public GetRowCount ( string strSQL ) : int
strSQL string
리턴 int

GetRowCount() 공개 메소드

获得符合该Sql语句的表记录数
public GetRowCount ( string strSQL, SqlParameter coll ) : int
strSQL string
coll System.Data.SqlClient.SqlParameter
리턴 int

GetRows() 공개 메소드

获得包含在DataSet对象的映谢表集合中的index为0的映谢表
public GetRows ( string strSQL ) : System.Data.DataRowCollection
strSQL string
리턴 System.Data.DataRowCollection

GetRows() 공개 메소드

获得包含在DataSet对象的映谢表集合中的index为0的映谢表
public GetRows ( string strSQL, SqlParameter coll ) : System.Data.DataRowCollection
strSQL string
coll System.Data.SqlClient.SqlParameter
리턴 System.Data.DataRowCollection

GetWebConfigValue() 공개 메소드

取出配置文件中的指定值
public GetWebConfigValue ( string sPara ) : string
sPara string
리턴 string

MsgBox() 공개 메소드

简单提示框 20140318 小张添加
public MsgBox ( Page webform, string msg ) : void
webform Page
msg string
리턴 void

OpenDB() 공개 메소드

和数据库建立连接
public OpenDB ( ) : void
리턴 void

RunSqlTransaction() 공개 메소드

执行事物
public RunSqlTransaction ( string sSQL ) : bool
sSQL string
리턴 bool

SaveFileToImage() 공개 메소드

把字节流存到数据库
public SaveFileToImage ( string strSQL, string DBName, byte byFileData ) : bool
strSQL string sql语句
DBName string
byFileData byte 字节流
리턴 bool

sqlDataReader() 공개 메소드

public sqlDataReader ( string strSQL ) : System.Data.SqlClient.SqlDataReader
strSQL string
리턴 System.Data.SqlClient.SqlDataReader

프로퍼티 상세

conn 공개적으로 정적으로 프로퍼티

public static string conn
리턴 string