php cli and mysql
- From: jtu@xxxxxxxxxxxxx (James Tu)
- Date: Tue, 14 Nov 2006 13:07:38 -0500
I'm running a php script from the command line (I'm on OS X) and I'm getting ...
Warning: mysql_connect(): Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)
Here's the script (this just tests a connection and a query...the actual script imports data from text files):
#!/usr/bin/php
<?php
echo "HELLO WORLD\n";
$connection = mysql_connect(HOST, ID, PW);
mysql_select_db(DB, $connection);
$result = mysql_query("SELECT COUNT(*) as num_of_countries from geo_entities");
$row = mysql_fetch_array($result);
print_r($row);
?>
I tested the script from a browser and the connection and query worked.
Do I have to do something special in order for PHP CLI to connect to MySQL?
-James
.
- Follow-Ups:
- Re: [PHP] php cli and mysql
- From: cajbecu
- Re: [PHP] php cli and mysql
- Prev by Date: Re: [PHP] Highjack?
- Next by Date: date() function
- Previous by thread: PHP Assistance - Modifying Rating Script
- Next by thread: Re: [PHP] php cli and mysql
- Index(es):
Relevant Pages
|
|