Im trying to retrieve data from am interbase database.
I can connect succesfully with the database, but when I
attemp to make a query, I receive the follow error:
PHP Warning: InterBase: Dynamic SQL Error SQL error code = -901 feature is not supported in d:\inetpub\wwwroot\intrantex\ibase.php on line 4
Im working PHP 4.3.2 & InterBase 6.0.1 on a IIS 5.
Any help is much appreciated !!!
The script code is this (Sorry my bad English
<?php
$dbh = ibase_pconnect($host, $username, $password,'ISO8859_1', '100', '1' );
$stmt = "SELECT * FROM ACOMP";
$sth = ibase_query($dbh, $stmt);
.......
ibase_free_result($sth);
ibase_close($dbh);
?>