Hi
I’m connecting to Firebird database via Pdo, i would like to know if it is possible to configure the field names to lowercase, instead of the uppercase sintax that is the default behavior?
The sentence to configure this in the connection is the following: “PDO::ATTR_CASE => PDO::CASE_LOWER”.
How could I configure this in PHP Grid?
Thanks, Regards.
The product is great!! I use it a lot and i like it very much!!
1 Answers
We are using ADODB wrapper and you need to define following to this enable.
define(“ADODB_ASSOC_CASE”,”ADODB_ASSOC_CASE_LOWER”);
include(“../../lib/inc/jqgrid_dist.php”);
$g = new jqgrid($db_conf);
Your Answer