6 Commits

Author SHA1 Message Date
33aba3b0a5 *** empty log message *** 2000-10-17 16:44:47 +00:00
47edf13df1 Fix memory leak (maybe). 2000-07-11 20:56:29 +00:00
3fa59b1ee5 It seems that MySQL-3.23 clients must be linked against libz. 2000-06-23 20:15:10 +00:00
b4b1cbebe9 More comments for the generally ignorant. A Windows configuration for
the truly ignorant.
1999-09-14 21:21:02 +00:00
14aec8c4d4 Captions for the clue-impaired. 1999-07-22 20:25:57 +00:00
638b154e72 A home-made mysql interface for Python so I can learn the API. It's almost
sorta functional. The problem with the existing interface (minor) is that
it's for 3.21 mysql. Not a huge problem, but it doesn't seem to have a stable
maintainer at the moment either.

Tommorrow I work on result objects so I can get queries done and stuff.

Python 1.5.2b2 (#1, Feb 18 1999, 18:20:08)  [GCC egcs-2.90.29 980515 (egcs-1.0.3 re on linux2
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
>>> import _mysql
>>> dir(_mysql)
['__doc__', '__file__', '__name__', 'connect', 'error', 'escape', 'get_client_info']
>>> _mysql.get_client_info()
'3.22.19a'
>>> c=_mysql.connect(passwd='foobar')
>>> dir(c)
['affected_rows', 'closed', 'dump_debug_info', 'errno', 'error', 'get_host_info', 'get_proto_info', 'get_server_info', 'info', 'open']
>>> c
<open connection to 'localhost' at 80ddf50>
>>> c.get_server_info()
'3.22.19a'
>>>
1999-03-11 05:38:47 +00:00