Good afternoon!
I bought the license Premium.
1. How to establish the coding at connection of a database that information was in Russian.
2. How to use the Codeigniter driver at connection of the oracle database.
4 Answers
PHPGrid does not reuse CI connection classes.
You need to pass the database connection parameters to phpgrid..
e.g.
$db_conf = array();
$db_conf["type"] = "oci8";
$db_conf["server"] = "127.0.0.1:1521";
$db_conf["user"] = "system";
$db_conf["password"] = "asd";
$db_conf["database"] = "xe";
$g = new jqgrid($db_conf);
To avoid duplicate db config, you can read CI db config parameters and use with grid config:
http://stackoverflow.com/questions/7242413/access-database-config-variables-from-a-helper-in-codeigniter
Your Answer