Hi all,
Is there any way to avoid escaping column and table names in Informix driver?
For example, if I make an insert call with this params:
But Informix ODBC driver throw a fatal error like this
Because INFORMIX column and table names must set without quotes. Right statement should be:
Note: I've tried to set
in the __construct() of
But this hack don't add quotes to values, so it's not useful.
Thanks in advance.
Is there any way to avoid escaping column and table names in Informix driver?
For example, if I make an insert call with this params:
PHP Code:
$values = array(
"field_1" => "value_1",
"field_2" => "value_2"
);
$this->db->insert("my_table", $values);
//It produces
//INSERT INTO "my_table" ("field_1", "field_2") VALUES ("value_1", "value_2")
But Informix ODBC driver throw a fatal error like this
PHP Code:
[Informix][Informix ODBC Driver][Informix]A syntax error has occurred.
PHP Code:
INSERT INTO my_table (field_1, field_2) VALUES ("value_1", "value_2")
Note: I've tried to set
PHP Code:
$this->_escape_char = '';
Code:
/system/database/drivers/pdo/subdrivers/pdo_informix_driver.phpThanks in advance.