Re: mssql_query not returning
- From: Erwin Moller <Since_humans_read_this_I_am_spammed_too_much@xxxxxxxxxxxxxxxx>
- Date: Tue, 11 Sep 2007 11:57:36 +0200
Lado.Leskovec@xxxxxxxxx wrote:
HI!
I have been using MySQL in connection with PHP for fun for several
years now, but at work they recently wanted me to develop an
application, that uses MS SQL server 2005.
I managed to overcome several problems and can now connect to server
and to database, but the mssql_query isnt returning anything.
Code I use:
************************************************************************
$connection= mssql_connect($server, $username, $password)
or die("Couldn't connect to SQL Server on $server");
//select a database to work with
$DB = mssql_select_db($database, $connection)
or die("Couldn't open database $database");
$result=mssql_query("SELECT * FROM Persons")
or die("Couldn't create a result.");
mssql_close($connection);
$num_user=mssql_num_rows($result);
$i=$num_user;
while ($i > 0)
{
$Name=mssql_result($result,$i-1,"Name");
echo "$Name<br>";
$i--;
}
************************************************************************
I tried this SQL query from MS SQL Server Management Studio and it
works fine. I get my desired result there. I also tried to supply the
$connection after the SQL statement.
I also tried to remove the "or die("Couldn't create a result.");"
part, which continues the program, but the $result is empty.
What am I doing wrong?
Thanks in advance!
Lado
Hi Lado,
Simply look up what the errorcode was.
So remove the 'or die' part from
$result=mssql_query("SELECT * FROM Persons")
or die("Couldn't create a result.")
, and inspect the error using mssql_get_last_message()
Good luck.
Regards,
Erwin Moller
PS: I had trouble with mssql too, and switched to odbc connection to mssql, which solved a lot of strange things for me. But maybe I setted up the whole thing bad in the first place.
.
- Follow-Ups:
- Re: mssql_query not returning
- From: Lado . Leskovec
- Re: mssql_query not returning
- References:
- mssql_query not returning
- From: Lado . Leskovec
- mssql_query not returning
- Prev by Date: Re: New to $_SESSION
- Next by Date: Re: how to pass the javascript array value to for the php variable.
- Previous by thread: mssql_query not returning
- Next by thread: Re: mssql_query not returning
- Index(es):
Relevant Pages
|