RE: [PHP-DB] MySQL Connect using Dreamweaver

2005-10-13 Thread Matthias Willerich
, believe me, it is. Alternatively look up the error code, although I don't know if that would've helped in this case. -Original Message- From: W Roothman [mailto:[EMAIL PROTECTED] Sent: 13 October 2005 06:18 To: php-db@lists.php.net Subject: [PHP-DB] MySQL Connect using Dreamweaver Dear

RE: [PHP-DB] MySQL Connect using Dreamweaver

2005-10-13 Thread Bastien Koert
PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] MySQL Connect using Dreamweaver Date: Thu, 13 Oct 2005 07:17:56 +0200 Dear All, I have installed MySQL 5 with PHP 4.3.3. When trying to connect to a database form the 'Database' tab in Dreamweaver, I now get the following error when trying to select

[PHP-DB] MySQL Connect using Dreamweaver

2005-10-12 Thread W Roothman
Dear All, I have installed MySQL 5 with PHP 4.3.3. When trying to connect to a database form the 'Database' tab in Dreamweaver, I now get the following error when trying to select a DB: '1251 Client does not support authentication protocol requested by server; consider upgrading MySQL client'

RE: [PHP-DB] mysql connect error

2003-08-14 Thread Peter Lovatt
should give you more information HTH, if not comeback to me Peter -Original Message- From: John Byrne [mailto:[EMAIL PROTECTED] Sent: 12 August 2003 08:06 To: [EMAIL PROTECTED] Subject: [PHP-DB] mysql connect error Hi, I've just started playing with Linux/MySQL/PHP - I come from

[PHP-DB] mysql connect error

2003-08-12 Thread John Byrne
Hi, I've just started playing with Linux/MySQL/PHP - I come from a Windows/ASP/PowerBuilder background. I have created a database in MySQL and now are trying to connect to it via PHP. I keep getting the same error, no matter what I specify in DSN. I always get: DB Error: no such database The

Re: [PHP-DB] mysql connect, while and close big problem

2002-02-22 Thread Killer Angel Clark
Engineer ENTERASYS NETWORKS -Original Message- From: Killer Angel Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 10:17 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] mysql connect, while and close big problem I make a connection A to get an array of result. Then use

[PHP-DB] mysql connect, while and close big problem

2002-02-21 Thread Killer Angel Clark
I make a connection A to get an array of result. Then use a while loop to use the array. In the while loop, I use the data to select other data by making a new connection. After printing the data, I close this new connection. After the while loop, I close the first connection too. If only have

RE: [PHP-DB] mysql connect, while and close big problem

2002-02-21 Thread Hunter, Ray
What type of connections are you making persistent or non-persistent? Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Killer Angel Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 10:17 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] mysql

[PHP-DB] MySQL connect

2002-02-04 Thread J Leonard
Hi all, Ok I am learning this on my own but I could use some help. I have started these two pages test.php and config.php here is the code: test.php ? // include the database configuration include config.php; // connect to database

Re: [PHP-DB] MySQL connect

2002-02-04 Thread Ken Thompson
On Monday 04 February 2002 10:54 am, you wrote: Hi all, Ok I am learning this on my own but I could use some help. I have started these two pages test.php and config.php here is the code: test.php ? // include the database configuration include config.php; In looking at my include page

Re: [PHP-DB] MySQL connect

2002-02-04 Thread Paul Burney
on 2/4/02 12:54 PM, J Leonard at [EMAIL PROTECTED] appended the following bits to my mbox: mysql_connect($db[host],$db[user],$db[password],$db[database]) or The above function call only has three parameters. The database isn't specified in the connect call but selected later. Try:

RE: [PHP-DB] MySQL connect

2002-02-04 Thread Gurhan Ozen
/ref.mysql.php Gurhan -Original Message- From: J Leonard [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 12:54 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] MySQL connect Hi all, Ok I am learning this on my own but I could use some help. I have started these two pages test.php

Re: [PHP-DB] MySQL Connect Problem

2001-05-18 Thread Shahmat Dahlan
]] Sent: Thursday, May 17, 2001 2:16 PM To: PHP-DB Subject: RE: [PHP-DB] MySQL Connect Problem I'm on Windows 2000. Jeff Jeff, If you are on unix/linux use the command id to see who you are. You can only use jeff in your connect string if jeff is a user in your mysql

Re: [PHP-DB] MySQL Connect Problem

2001-05-18 Thread Greg K
RE: [PHP-DB] MySQL Connect Problem I'm on Windows 2000. Jeff Jeff, If you are on unix/linux use the command id to see who you are. You can only use jeff in your connect string if jeff is a user in your mysql database. If you are root when you are running mysql

RE: [PHP-DB] MySQL Connect Problem

2001-05-17 Thread Rubanowicz, Lisa
: Jeff Oien [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 17, 2001 2:16 PM To: PHP-DB Subject: RE: [PHP-DB] MySQL Connect Problem I'm on Windows 2000. Jeff Jeff, If you are on unix/linux use the command id to see who you are. You can only use jeff in your connect string if jeff is a user

RE: [PHP-DB] MySQL Connect Problem

2001-05-17 Thread Jeff Oien
PM To: PHP-DB Subject: RE: [PHP-DB] MySQL Connect Problem I'm on Windows 2000. Jeff Jeff, If you are on unix/linux use the command id to see who you are. You can only use jeff in your connect string if jeff is a user in your mysql database. If you are root when you

RE: [PHP-DB] MySQL Connect Problem

2001-05-16 Thread Jeff Oien
of something else. Very weird, but its worth a shot. -Original Message- From: Jeff Oien [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 8:24 PM To: PHP-DB Subject: RE: [PHP-DB] MySQL Connect Problem Yes they are. Jeff Is the MySQL and Apache running on the same

RE: [PHP-DB] MySQL Connect Problem

2001-05-16 Thread Jeff Oien
: Tuesday, May 15, 2001 8:24 PM To: PHP-DB Subject: RE: [PHP-DB] MySQL Connect Problem Yes they are. Jeff Is the MySQL and Apache running on the same machine? Jeff Oien wrote: I have MySQL on a new Win2000 install and can't connect to it using PHP. I am

Re: [PHP-DB] MySQL Connect Problem

2001-05-16 Thread boclair
Here is sample code: ? $connection = @mysql_connect(localhost, jeff, *) or die(Couldn't connect.); if ($connection) { $msg = success!; } ? This is on my machine only used by me. I also tried connecting to IP address and 127.0.0.1 and it still won't work. Thanks. Jeff Oien Are

RE: [PHP-DB] MySQL Connect Problem

2001-05-16 Thread Jeff Oien
Here is sample code: ? $connection = @mysql_connect(localhost, jeff, *) or die(Couldn't connect.); if ($connection) { $msg = success!; } ? This is on my machine only used by me. I also tried connecting to IP address and 127.0.0.1 and it still won't work. Thanks. Jeff

[PHP-DB] MySQL Connect Problem

2001-05-15 Thread Jeff Oien
I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username and password in the .ini file using WinMySQLAdmin. I'm using Apache which is working fine otherwise.

Re: [PHP-DB] MySQL Connect Problem

2001-05-15 Thread Shahmat Dahlan
Is the MySQL and Apache running on the same machine? Jeff Oien wrote: I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username and password in the .ini

RE: [PHP-DB] MySQL Connect Problem

2001-05-15 Thread Jeff Oien
Yes they are. Jeff Is the MySQL and Apache running on the same machine? Jeff Oien wrote: I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username

[PHP-DB] MySql Connect question

2001-03-29 Thread Phil Jackson
Hi, If I were to try to connect to a MySQL DB from some scripting language, in the connection string what do I put in the "provider=" string for an ODBC connection? I'd like to try this from an ASP application using ADO, but need to know this. Before you boo and hiss - I've duplicated the