}
// data rows
$Rows = sybase_num_rows($Result);
for($n = 0; $n < $Rows; $n++)
{
print("
for($i = 0; $i < $Fields; $i++)
{
print("
print(sybase_result($Result, $n, $i));
print("
}
print("
}
print("\n");
sybase_free_result($Result);
sybase_close($Link);
?>
boolean sybase_select_db(string database, integer connection)
The sybase_select_db function selects the database to use on the database server. If the
connection argument is omitted, the last connection created will be used. See
sybase_fetch_array for an example.