Can not establish GridConnector to Oracle - Not implemented

Please can you explain what problem is.

I trying connect to the oracle database:

<? require("codebase/grid_connector.php"); require("codebase/db_oracle.php"); $res = oci_connect("h4yf", "password", "localhost/XE"); $grid = new GridConnector($res,"Oracle"); $grid->render_table("person","ID,NAME_FIRST"); ?>

I receive:
Fatal error: Uncaught exception ‘Exception’ with message ‘Not implemented’ in codebase\db_common.php:928:

<? .... 928 public function fields_list($table) { throw new Exception("Not implemented"); } What am I doing wrong?

Hi,
you should use render call like here:

$grid->render_table("person","ID", "NAME_FIRST");

You don’t have third parameter with fields list.