I couldn't find out what's the problem with the query to the MSSQL server.
my PHP code is:
$query = "SELECT count(system_id) FROM profile";
$res = sybase_query($query);
if ($res) {
while ($_row = sybase_fetch_row($res)) {
$_rowCount = $_row[0];
}
}
The error message is as below:
Warning: sybase_query(): Sybase message: Invalid object name 'profile'. (severity 16)
What's the problem, there is a table name profile. 😕