/[gnue]/gnue-common/src/datasources/drivers/adodbapi/adodbapi/__init__.py
ViewVC logotype

Diff of /gnue-common/src/datasources/drivers/adodbapi/adodbapi/__init__.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by jcater, Fri Oct 10 01:21:11 2003 UTC revision 1.1.2.2 by jcater, Sat Nov 8 16:14:56 2003 UTC
# Line 19  Line 19 
19  # Copyright 2000-2003 Free Software Foundation  # Copyright 2000-2003 Free Software Foundation
20  #  #
21    
 from Connection import *  
   
22  __description__ = _("ADO-DB Data Driver for MS SQL-Server/Access")  __description__ = _("ADO-DB Data Driver for MS SQL-Server/Access")
23  __driverurl__ = "http://sourceforge.net/projects/adodbapi"  __driverurl__ = "http://sourceforge.net/projects/adodbapi"
24    
# Line 52  data_source = myServerName Line 50  data_source = myServerName
50  initial_catalog = myDatabaseName  initial_catalog = myDatabaseName
51  """  """
52    
53    
54    #
55    # Stub code to not initialize the Connection until needed.
56    # This greatly helps with error messages.
57    #
58    def Connection(*args, **parms):
59      from Driver import Connection as C
60      return C(*args, **parms)
61    

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26