I did a new install of scriptcase on a Ubunt0 12.04.3 LTS server on top of xampp (64bit).
Oracle-instant Client 11.2.0.4.0-2 is installed
SQLPlus works and a short sample test.php works like a charm.
<?php
// Connects to the XE service (i.e. database) on the "localhost" machine
$conn = oci_connect('user', 'pwd', 'sid');
if (!$conn) {
$e = oci_error();
trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
$stid = oci_parse($conn, 'SELECT * FROM boerse');
oci_execute($stid);
echo "<table border='1'>
";
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
echo "<tr>
";
foreach ($row as $item) {
echo " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : " ") . "</td>
";
}
echo "</tr>
";
}
echo "</table>
";
?>
But if i try to create an connection to the same as above via scriptcase it does not work.
If press test connection it never comes back.
Both oracle 8 and oracle 8.05 has the same problem
Any hints?
thanks in advance
bigwasp