File: adodb_odbc_mssql.py

package info (click to toggle)
python-adodb 2.02b-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 172 kB
  • ctags: 290
  • sloc: python: 1,143; makefile: 47
file content (37 lines) | stat: -rw-r--r-- 1,233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
########################################################################
# Vers 2.02 21 May 2007, (c)2004-2007 John Lim (jlim#natsoft.com.my) All Rights Reserved
# Released under a BSD-style license. See LICENSE.txt.
# Download: http://adodb.sourceforge.net/#pydownload
########################################################################

import adodb,adodb_odbc,datetime

try:
    True, False
except NameError:
    # Maintain compatibility with Python 2.2
    True, False = 1, 0
        
class adodb_odbc_mssql(adodb_odbc.adodb_odbc):
    databaseType = 'odbc_mssql'
    dataProvider = 'odbc'
    sysDate = 'convert(datetime,convert(char,GetDate(),102),102)'
    sysTimeStamp = 'GetDate()'
    
    def _newcursor(self,rs):
        return cursor_odbc_mssql(rs,self)    
        
class cursor_odbc_mssql(adodb_odbc.cursor_odbc):
    def __init__(self,rs,conn):
        adodb_odbc.cursor_odbc.__init__(self,rs,conn)

    def Affected_Rows(self):
        return self._conn.GetOne('select @@rowcount')

    def Insert_ID(self):
        return self._conn.GetOne('select @@IDENTITY')

if __name__ == '__main__':
    db = adodb_odbc_mssql()
    db.Connect("Driver={SQL Server};Server=localhost;Database=northwind;")
    adodb.Test(db)