php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #536 Crash when working with mSQL 2.01 PL B
Submitted: 1998-07-10 15:31 UTC Modified: 1998-08-13 15:04 UTC
From: doka at webest dot com Assigned:
Status: Closed Package: Reproducible Crash
PHP Version: 3.0.1 OS: Windows NT4, sp3
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
10 + 11 = ?
Subscribe to this entry?

 
 [1998-07-10 15:31 UTC] doka at webest dot com
Hello!

I'm using mSQL 2.01 Patch Level B under NT.
This script:

<?
 dl("msql2.dll");
 $cid = msql_connect("localhost");
 msql_selectdb("test", $cid);
 $dtbl = msql_query("select * from test1", $cid);
 echo "Rows = ".msql_num_rows($dtbl)."\n";
 while($row = msql_fetch_row($dtbl))
 echo $row[0].":".$row[1].":".$row[2]."\n";
 msql_close($cid);
?>

crashes PHP at exit (after loop, which shows num_rows and
rows itself correctly). After commenting 'msql_query'
error goes away.

/doka

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [1998-08-13 15:04 UTC] shane
Until such a time as Hughes has an official port of the client library for msql, msql on windows is unsupported.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 18:01:30 2024 UTC