Grid in combo with connector and firebird problem

Hi,

I try tu use combo in editing mode with connector inside grid but i have a problem with firebird.
Your example code say to make a render query with alias value and alias label . Below you example

$options = new OptionsConnector($res);
$options->render_table(“countries”,“country_id”,“country_id(value),country_name(label)”);

In firebird “value” is reserved word and query fails !!
There is a differente solution to use combo in editing mode inside grid ??

many thanks
best regards
Antonello

Hi Sir,

Any Solution ???

Thanks
Antonello

In above snippet you are providing only res to the connector, which will create default mysql connector. Are you using exactly the same code or something like

$options = new OptionsConnector($res, "PDO");

or some other connector type ?