$query = "SELECT * from cmastertest ";
print "<TABLE BORDER=\"1\">\n";
//print "<TR>\n";
while ( list( $key, $val ) = fetch_row( $sth ) ) {
print "<TR>";
print "<TD>key is $key</TD>";
print "<TD>val is $val</TD>";
print "</TR>";
}
there are 28 rows in cmastertest
but output is sometimes 5 rows,sometimes no rows,sometimes 1 row etc.....
I there any oracle fine tuning to be done????