I'm having difficulties with loading values from a text file into my
databse.
I've tried the following and got these errors. last one is with full path
=======================
mysql> LOAD DATA INFILE "months.txt" INTO TABLE months;
ERROR 1105: File './date1/months.txt' not found (Errcode: 2)

mysql> LOAD DATA INFILE "/months.txt" INTO TABLE months;
ERROR 13: Can't get stat of '/months.txt' (Errcode: 2)

mysql> LOAD DATA INFILE "/home/danjar/months.txt" INTO TABLE months;
ERROR 13: Can't get stat of '/home/danjar/months.txt' (Errcode: 13)
========================

can anyone assit?

thanks
dan


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to