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

Diff of /gnue-common/src/datasources/drivers/mysql/mysql/__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:21 2003 UTC revision 1.1.2.2 by jcater, Sat Nov 8 16:14:56 2003 UTC
# Line 18  Line 18 
18  #  #
19  # Copyright 2000-2003 Free Software Foundation  # Copyright 2000-2003 Free Software Foundation
20  #  #
   
 from Connection import *  
   
21  __description__ = _("MySQL Data Driver")  __description__ = _("MySQL Data Driver")
22  __driverurl__ = "http://????"  __driverurl__ = "http://????"
23  __examples__ = ""  __examples__ = ""
24  __doc__ = ""  __doc__ = ""
25    
26    #
27    # Stub code to not initialize the Connection until needed.
28    # This greatly helps with error messages.
29    #
30    def Connection(*args, **parms):
31      from Connection import Connection as C
32      return C(*args, **parms)
33    

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