Welcome Guest, Not a member yet? Register   Sign In
CUBRID Database Support
#18

[eluser]kadishmal[/eluser]
Just in case, here is the configurations necessary to establish DB Connection with CUBRID.

Code:
$db['default']['hostname'] = 'localhost';
$db['default']['port'] = '33000';
$db['default']['username'] = 'dba';
$db['default']['password'] = 'ci_pass';
$db['default']['database'] = 'ci_demo';
$db['default']['auto_commit'] = TRUE;
$db['default']['dbdriver'] = 'cubrid';
$db['default']['dbprefix'] = 'tbl_';

1. port parameter represents the port of the CUBRID Broker. By default it is 33000. To check which one is yours, run the following command. This assumes that your CUBRID Service is running.

Code:
% cubrid service status

should output something like:

Code:
@ cubrid master status
++ cubrid master is running.
@ cubrid server status
Server ci_demo (rel 8.4, pid 5042)
@ cubrid broker status
  NAME           PID  PORT  AS  JQ      REQ  TPS  QPS    LONG-T    LONG-Q  ERR-Q
================================================================================
* query_editor  5007 30000   5   0        0    0    0    0/0.0    0/0.0      0
* broker1       5017 33000   5   0       12   10    4    0/0.0    0/0.0      0
@ cubrid manager server status
++ cubrid manager server is running.

As you can see the CUBRID Broker (broker1) is listening to port 33000.

2. Also you can set the auto_commit parameter to FALSE which will allow you to run your Web app in dry mode, i.e. all INSERTs to the DB will not be committed.

If any questions, feel free to ask.


Messages In This Thread
CUBRID Database Support - by El Forum - 01-19-2011, 07:41 PM
CUBRID Database Support - by El Forum - 06-07-2011, 02:11 AM
CUBRID Database Support - by El Forum - 07-14-2011, 04:00 PM
CUBRID Database Support - by El Forum - 07-14-2011, 11:57 PM
CUBRID Database Support - by El Forum - 07-15-2011, 12:23 AM
CUBRID Database Support - by El Forum - 07-15-2011, 01:18 AM
CUBRID Database Support - by El Forum - 07-15-2011, 03:59 AM
CUBRID Database Support - by El Forum - 07-15-2011, 04:11 AM
CUBRID Database Support - by El Forum - 07-15-2011, 05:07 AM
CUBRID Database Support - by El Forum - 07-15-2011, 07:08 AM
CUBRID Database Support - by El Forum - 07-17-2011, 09:47 PM
CUBRID Database Support - by El Forum - 08-03-2011, 12:32 AM
CUBRID Database Support - by El Forum - 08-03-2011, 04:06 AM
CUBRID Database Support - by El Forum - 08-03-2011, 04:19 AM
CUBRID Database Support - by El Forum - 08-05-2011, 05:19 AM
CUBRID Database Support - by El Forum - 08-07-2011, 07:01 PM
CUBRID Database Support - by El Forum - 08-08-2011, 09:49 PM
CUBRID Database Support - by El Forum - 08-10-2011, 01:00 AM
CUBRID Database Support - by El Forum - 02-07-2012, 11:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB