This package is a test case for Bug #4704. This application was compiled and tested using VC++ .NET 2003.

Included in this ZIP file are:
- Project file and source code
- SQL script for building the database (dbtest.sql)

You must create a data source named "dbtest" which connects to the database "dbtest" using the MySQL ODBC Connector.

The application will crash when executed. However, the crash can be avoided by making one of the following changes:

1. Disabling UNICODE ( Project > Properties > General > Character Set = "Not Set" )
2. Creating only one database thread, i.e. comment out the line shown below:

	m_Thread[1] = AfxBeginThread( RUNTIME_CLASS( CDBThread ) );

Thus, it seems the crash has to do with a combination of Unicode and multiple CWinThread-derived threads.

