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

Diff of /gnue-common/src/datasources/drivers/db2/db2/__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:13 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__ = _("IBM DB2 Data Driver")  __description__ = _("IBM DB2 Data Driver")
23  __driverurl__ = "ftp://people.linuxkorea.co.kr/pub/DB2/"  __driverurl__ = "ftp://people.linuxkorea.co.kr/pub/DB2/"
24  __examples__ = ""  __examples__ = ""
# Line 31  __doc__ = """ Line 29  __doc__ = """
29       service=    This is the DB2 DSN for your connection  (required)       service=    This is the DB2 DSN for your connection  (required)
30  """  """
31    
32    
33    #
34    # Stub code to not initialize the Connection until needed.
35    # This greatly helps with error messages.
36    #
37    def Connection(*args, **parms):
38      from Driver import Connection as C
39      return C(*args, **parms)
40    

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