Release 0.1.3 1997-04-23

This code has been tested on a linux box using linux 2.1.35 libc5 
and mysql 3.20.16

Bug Fixes
	Fixes for my silly typos in timedate handling provided by  
	Karsten Thygesen <karthy@kom.auc.dk>

New commands 

	It includes the following new functionality.

	create(db_name)         create a new database
	drop(db_name)           drop a database
	reload()                reload the mysql tables
	shutdown()              shutdown mysql


Release 0.1.2 1997-04-03

New In this Release
	
Support for new mysql types
	varchar
	blobs
	time 
	date 
	timedate
	timestamp

Support for Username and Passwords

	authentification is handled as part of the connect option

	ie 

		import mySQL

		db = mySQL.connect(<OPTIONS>)

	where options can be either
	   nothing                       -- connect()
	   hostname                      -- connect('localhost')
	   hostname, username            -- connect('localhost', 'fred')
	   hostname, username, password  -- connect('localhost, 'fred','green')

IMPORTANT
	The support for date and time will not work with earlier versions of
	mysql which did not support these functions.  Therefore these may be 
	disabled by changing the #define 
		#define INCLUDE_DATE_TIME_SUPPORT 1
	to
		#undef INCLUDE_DATE_TIME_SUPPORT


	at the top the file.
