CUBRID-Python: CUBRID Module for Python DB API 2.0
License: BSD
Author: Kang, Dong-Wan (cubrid@cubrid.org)

PREREQUISITES
=============
 * CUBRID 1.1 and higher
   ** For CUBRID 2.1 and higher, use setup.py to install this Python Connector.
   ** For CUBRID 2.0 and lower, use setup_cubrid_2.0.py.
 * Python 2.4 to Python 3.0.1 including
 * C-Compiler(gcc or Microsoft Visual Studio)

INSTALL
=======
 * Unix/Linux
  * To install CUBRID-Python Driver, first build and then install as shown below.
  
   > python setup.py build
  
  * This command will build the CUBRID-Python Driver. Make sure the current directory has the "write" permission, otherwise, the building process will fail.
    
   > python setup.py install
   
   * This will install CUBRID-Python Driver into your system. It is necessary to become root for this purpose.
   
 * Windows
  * Copy cubrid.pyd and cubriddb.py files to the Lib folder where your Python has been installed. By default it is C:\Program Files\Python\Lib\. This is the place where all other third-party libraries are located.
    
 * More inforamtion about CUBRID-Python Driver, its documentation as well as the tutorials can be foound at http://www.cubrid.org/python_programming
 
SAMPLES
=======
 * You can find the sample code in the "sample" directory.
 * If you want to connect to the CUBRID Database, make sure you have started the CUBRID Service (cubrid service start) and started the database you are connecting to (cubrid server start demodb - where demodb is the database to connect to).
 
 CHANGELOG
 =========
 * 0.5.3 -> Added setup_cubrid_2.0.py for backward compatibility for CUBRID 2.0 and lower.
 * 0.5.2 -> Fixed an issue with installation on x64 platforms. /lib64 directory is no longer available for CUBRID 2.1 and higher.