Can one load a Combo using a connector?
I am trying to do so, but the connector doesn’t seem to be returning the data in the form the combo wants.
$gridConn->render_sql($qry,'FDAUnii','FDAUnii,ActiveMoietyName');
Can this be done?
Can one load a Combo using a connector?
I am trying to do so, but the connector doesn’t seem to be returning the data in the form the combo wants.
$gridConn->render_sql($qry,'FDAUnii','FDAUnii,ActiveMoietyName');
Can this be done?
Can one load a Combo using a connector?
Yep,
[code]<?php
require_once("…/config.php");
$res=mysql_connect($mysql_server,$mysql_user,$mysql_pass);
mysql_select_db($mysql_db);
require("…/…/codebase/combo_connector.php");
$combo = new ComboConnector($res);
$combo->enable_log(“temp.log”);
$combo->render_table(“country_data”,“country_id”,“name”);
?>[/code]
Thanks! I was cutting and pasting and forgot to switch my gridconnector calls to comboconnector. All works now. Thanks again!