Code: Select all
$connection = $this->conn;Code: Select all
$fk = $connection->MetaForeignKeys($table);Then I want to query the db again for each of the relational tables that the fks reference. However, It doesn't seem like the connection is working. When I write
Code: Select all
//doesn't seem to work from here on
$fval = $connection->Execute($sql);
if($fval) print("<i>fval</i>");
else print("<i>nope</i>");Does anyone see what I'm doing wrong?
thanks,