Re: [PHP-DB] testing

2011-03-19 Thread Daniel Brown
On Fri, Mar 18, 2011 at 17:35, Jim Giner wrote: > first time poster There's no need to test. We've known it's worked for years. -- Network Infrastructure Manager http://www.php.net/ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Testing - no emails since 11:45 AM 3/23/04

2004-03-23 Thread Hutchins, Richard
List has been quiet, but I (obviously) saw your post, Gary. Rich > -Original Message- > From: Gary Every [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 23, 2004 4:44 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] Testing - no emails since 11:45 AM 3/23/04 > > > Testing, have receive

Re: [PHP-DB] Testing code

2003-07-03 Thread Becoming Digital
riginal Message - From: "Matthew Moldvan" <[EMAIL PROTECTED]> To: "'Hugh Dickinson'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, 02 July, 2003 10:26 Subject: RE: [PHP-DB] Testing code Yes, but it can be complicated ... you have to ins

RE: [PHP-DB] Testing code

2003-07-02 Thread Matthew Moldvan
Yes, but it can be complicated ... you have to install MySQL (www.mysql.com) and PHP (www.php.net) and web server software, such as Apache (www.apache.org). I recently setup a test server on Windows XP with little trouble ... Good luck! Regards, Matthew Moldvan System Administrator Trilogy Int

RE: [PHP-DB] testing ODBC + MSSQL connection locally

2001-07-10 Thread Andrew Hill
m: Frank M. Kromann [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 09, 2001 7:22 PM > To: olinux > Cc: php-db > Subject: Re: [PHP-DB] testing ODBC + MSSQL connection locally > > > Hi, > > > I would like to begin learning ODBC. Will I be able to set this up on my > >

Re: [PHP-DB] testing ODBC + MSSQL connection locally

2001-07-09 Thread Frank M. Kromann
Hi, > I would like to begin learning ODBC. Will I be able to set this up on my > single local machine? The ODBC functions are build in when you are running PHP on a Windows Box. If you are running on a (nix box you have to compile PHP with support for ODBC. > Also, What about connecting to MS

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Szeto
I have use other example and set the '/var/lib/mysql/mysql.sock' to chmod 777 this example work Thank you everybody. Ted Rolle <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Excellent diagnosis, sir! However, it is woefully and pitifully

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Ted Rolle
Excellent diagnosis, sir! However, it is woefully and pitifully short on curative information. On Sun, 1 Apr 2001, Felix Kronlage wrote: > On Sun, Apr 01, 2001 at 06:50:24PM +0800, Szeto wrote: > > > I am new to Linux environment > > so what. You could still read the error-message: >

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Felix Kronlage
On Sun, Apr 01, 2001 at 06:50:24PM +0800, Szeto wrote: > I am new to Linux environment so what. You could still read the error-message: | Warning: MySQL Connection Failed: Can't connect to local MySQL server | through socket '/var/lib/mysql/mysql.sock' (111) in this suggests, that you

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Szeto
I am new to Linux environment what is mean by socket and what is the file.extensive and location Felix Kronlage <[EMAIL PROTECTED]> wrote in message 20010401003741.A5849@mad">news:20010401003741.A5849@mad... On Sun, Apr 01, 2001 at 06:05:28PM +0800, Szeto wrote: > the MySQL is on c

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Felix Kronlage
On Sun, Apr 01, 2001 at 06:05:28PM +0800, Szeto wrote: > the MySQL is on coz, it show in > > > Warning: MySQL Connection Failed: Can't connect to local MySQL server > > > through socket '/var/lib/mysql/mysql.sock' (111) in is there a socket in /var/lib/mysql ? -fkr -- gpg-fingerprint: 076E 1E

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Szeto
the MySQL is on coz, it show in Ted Rolle <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Mysql isn't up? > > > On Sun, 1 Apr 2001, Szeto wrote: > > > Hello > > > > The code below i use in testing the connection (written in php4) > > > if(!mysql_connect("l

Re: [PHP-DB] Testing MySQL failed ???

2001-03-31 Thread Ted Rolle
Mysql isn't up? On Sun, 1 Apr 2001, Szeto wrote: > Hello > > The code below i use in testing the connection (written in php4) >if(!mysql_connect("localhost","khaimun","akyweb")) { > print "could not connect to mysql!"; > } > mysql_select_db("focalmail"); > ?> > > -