[PHP-DB] Problem with ODBTP

2004-02-17 Thread Sascha Kaufmann
Hello everyone I try to port an application from Windows/ODBC to Linux/ODBTP, I have a MSSQL Server 2000. If I use the function odbtp_fetch_row, I get the following warn message: "Warning: [ODBTPERR][0]Detached object in ". Anyone a idea what this could mean? Google won't told me that :( best r

[PHP-DB] MSSQL Problem

2003-10-01 Thread Sascha Kaufmann
Hello everyone I have a strange problem with MSSQL Server 2000 and PHP 4.3.3 on a Windows XP machine with IIS. Sometimes, my script connects to the SQL Server, he said he couldn't connect, but if I reload the page, eveything is fine I can't see any schema in this fault, sometimes it works a

Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread Sascha Kaufmann
You have to change the password hash to the old 3.23.x format if you don't want or can't use mysqli. Open a mysql shell and type something like: use mysql; UPDATE user SET password = OLD_PASSWORD('yourpass') WHERE user = 'youruser' AND host = 'localhost'; On Thu, 2005-10-13 at 08:23 +0200, Blaz w

Re: [PHP-DB] Re: MySQL Connect using Dreamweaver

2005-10-13 Thread Sascha Kaufmann
5-10-13 at 16:35 +0200, W Roothman wrote: > Dear Sascha, Mathias, Blaz > > Thanks, Sacha it worked, the AND localhost='localhost' did it, but my > new error now is > > 'localhost not allowed to connect to this MySQL server' > > g... > > R&#