Open Source RDBMS - Seamless, Scalable, Stable and Free

한국어 | Login |Register

Documents tagged with ""

Your Query returned 92 results

  • Installing CUBRID Python Driver using apt-get (Ubuntu)
    To install CUBRID Python Driver using apt-get, we need to add CUBRID's repository so that Ubuntu knows where to download the packages from, and then tell the OS to update its indexes. sudo add-apt-repository ppa:cubrid/cubrid sudo apt-get update First install CUBRID if yo...
    http://www.cubrid.org/wiki_apis/entry/installing-cubrid-python-driver-using-apt-get-ubuntu
  • Cubrid Python driver 9.0.0 release-note
    9.0.0.0001 Fixed bug NOISSUE: Not use two connect_ex and new excape_string functions in Windows platform, because the cascci.lib doesn't export these functions.
    http://www.cubrid.org/wiki_apis/entry/cubrid-python-driver-9-0-0-release-note
  • Executing a SELECT query with CUBRID Python driver
    Here is a simple Python program which executes a SELECT query against a demodb database installed on a localhost. import CUBRIDdb conn = CUBRIDdb.connect('CUBRID:localhost:33000:demodb:::', 'dba', '') cur = conn.cursor() cur.execute('SELECT * FROM code') rows = cur.fetchal...
    http://www.cubrid.org/wiki_apis/entry/executing-a-select-query-with-cubrid-python-driver
  • [Solved] Python: ImportError: No module named CUBRIDdb
    Today I encountered this "ImportError: No module named CUBRIDdb" error when trying to install and use the Python driver for CUBRID 8.4.3 on CentOS 5.6 x64. To install the driver I followed Create a CUBRID Database VM with Vagrant and Chef Cookbook under 5 minut...
    http://www.cubrid.org/wiki_apis/entry/solved-python-importerror-no-module-named-cubriddb
  • CUBRID OLEDB Driver Installation Instructions
    The scope of this tutorial is to provide an introduction to the CUBRID OLEDB Data Provider. We will show you where to get the CUBRID OLEDB Provider library, how to setup a CUBRID connection and how to develop some simple applications, mainly using OLE DB Con...
    http://www.cubrid.org/wiki_apis/entry/cubrid-oledb-driver-installation-instructions-new
  • CUBRID ODBC Driver Installation Instructions
    If you want to use CUBRID as a data source for your Windows applications using the ODBC Driver, this article will help you achieve this. Notice: If your CUBRID ODBC Driver version is 9.1.0.p1 or later, only one installation package is needed for both Windows 32 bi...
    http://www.cubrid.org/wiki_apis/entry/cubrid-odbc-driver-installation-instructions
  • Installing CUBRID PHP Driver using PECL [3]
    If PECL packager is installed in your system, the installation of CUBRID PHP Driver is straightforward. PECL will download and compile the library for you. Requirements To install the PHP Driver using PECL, you need to have CUBRID Database installed in your system sinc...
    http://www.cubrid.org/wiki_apis/entry/installing-cubrid-php-driver-using-pecl
  • Installing CUBRID PHP Driver using apt-get (Ubuntu)
    If you do not have PHP itself installed, install it using the following command. Otherwise, proceed to the next step below. sudo apt-get install php5 To install CUBRID PHP Driver using apt-get, we need to add CUBRID's repository so that Ubuntu knows where to downl...
    http://www.cubrid.org/wiki_apis/entry/installing-cubrid-php-driver-using-apt-get-ubuntu
  • CUBRID Perl Driver 8.4.1 Release Note
    Below you can find the revision history for DBD-cubrid 8.4.1. DBD-cubrid 8.4.1.0001 This version was released on March 26, 2012. BUG FIXES APIS-101 - Data was inserted into demodb DB when url isn't correct APIS-104 - A lot of error information appear when just calling...
    http://www.cubrid.org/wiki_apis/entry/cubrid-perl-driver-8-4-1-release-note
  • Introduction to CUBRID PHP Driver Unit Tests
    Overview There are some unit tests in directory tests. These unit tests use the PHP official unit test mechanism. The script run-tests.php is PHP official unit test tool. Configuring the Test Before running these unit tests, you should add the CUBRID database information on...
    http://www.cubrid.org/wiki_apis/entry/php_cubrid_test_intro