codeigniter

Questionscodeigniter
valerik asked 9 years ago

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
Abu Ghufran answered 9 years ago

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

Mark answered 8 years ago

Can I find any source code from demo?

Mark answered 8 years ago

TKS…

Your Answer

1 + 10 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?