.NET开发

本类阅读TOP10

·NHibernate快速指南(翻译)
·vs.net 2005中文版下载地址收藏
·【小技巧】一个判断session是否过期的小技巧
·VB/ASP 调用 SQL Server 的存储过程
·?dos下编译.net程序找不到csc.exe文件
·通过Web Services上传和下载文件
·学习笔记(补)《.NET框架程序设计(修订版)》--目录
·VB.NET实现DirectDraw9 (2) 动画
·VB.NET实现DirectDraw9 (1) 托管的DDraw
·建站框架规范书之——文件命名

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
三层架构之数据库访问层(VB)

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

'########数据库访问层##########


'返回一个ADOCN连接对象

'与C#不同,这里不能关闭连接及释放内存
Public Function GetCN(sDBPath As String) As ADODB.Connection

   
    Const sPro As String = "provider=microsoft.jet.oledb.4.0;data source="
    Const sDBPWD As String = ";jet oledb:database password=QQ:48403849"
   
    Dim sDBPath As String
    Dim m_cn As ADODB.Connection
   
   
   
    Set m_cn = New ADODB.Connection
   
    m_cn.CursorLocation = adUseClient '客户端游标
   
    If m_cn.State <> adStateClosed Then m_cn.Close
   
    On Error GoTo conerr
   
    m_cn.Open sPro & sDBPath & sDBPWD
   
    Set GetCN = m_cn

    Exit Function
conerr:
    Set GetCN = Nothing
    MsgBox "数据库连接错误", vbCritical

End Function

'执行一句SQL语句,正确返回 1
Public Function ExcuteSQL(sSQL As String) As Integer
    Dim m_cn As New ADODB.Connection
   
    On Error GoTo err
   
    Set m_cn = GetCN(sG_DBPath)
    m_cn.Execute sSQL
    m_cn.Close
    Set m_cn = Nothing
    ExcuteSQL = 1
   
    Exit Function
err:
    ExcuteSQL = 0
    Set m_cn = Nothing
   

End Function
'执行一组SQL语句,正确返回1
Public Function ExcuteSQLEX(sSQL() As String) As Integer
    '调用事务处理
    Dim m_cn As New ADODB.Connection, i As Integer
   
    If UBound(sSQL) < 0 Then Exit Function
    On Error GoTo err
   
    Set m_cn = GetCN(sG_DBPath)
   
    m_cn.BeginTrans
    For i = 0 To UBound(sSQL) - 1
        m_cn.Execute sSQL(i)
    Next i
   
    m_cn.CommitTrans
    m_cn.Close
    Set m_cn = Nothing
   
    ExcuteSQLEX = 1
   
    Exit Function
err:
    ExcuteSQLEX = 0
    m_cn.RollbackTrans
    m_cn = Nothing
   
End Function

'未完,待补充
 




相关文章

相关软件