ID:               28631
 Updated by:       [EMAIL PROTECTED]
 Reported By:      g dot m dot seed at hw dot ac dot uk
-Status:           Open
+Status:           Feedback
 Bug Type:         MySQL related
 Operating System: Windows98
 PHP Version:      4.3.4
 New Comment:

Do you have safe_mode or open_basedir enabled? 


Previous Comments:
------------------------------------------------------------------------

[2004-06-04 15:59:36] g dot m dot seed at hw dot ac dot uk

Description:
------------
The "load data" with "local infile" is supported in MySQL4, and has
been since version 3.22. However, when an SQL query is submitted using
mysql_query() the error returned by mysql_error() states "The used
command is not allowed with this MySQL version"?

I have read through the php manual, mysql manual, php's bug search
facilities and checked a mailing group and can't find any reference
that states the "load data" command is not supported when using php4
and mysql4?

Incidentally, the query executes as expected if run at the mysql>
command line prompt.

Comments on rebported bug #7244 state:

"LOAD DATA INFILE (without LOCAL) seems to be ok."

and it appears that the use of "local" is the problem. If so, then this
is contrary to the MySQL manual which clearly states the use of
"local".

Furthermore, if you don't consider the omission of "local" to be a bug
then it should be documented since it is extremely difficult to pin
this one down.

Reproduce code:
---------------
$sqlQuery = "load data local infile 'filename.csv' into table exams
fields terminated by ',' enclosed by '\"' lines terminated by
'\\r\\n'";

$result = mysql_query($sqlQuery)
        or die("query failed, error=" .  mysql_error() . "\n");


Expected result:
----------------
To insert the data from filename.csv

Actual result:
--------------
query failed, error=The used command is not allowed with this MySQL
version 


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=28631&edit=1

Reply via email to