2 messages in com.mysql.lists.mysqlLoad data Input problem
FromSent OnAttachments
Martin Scherer02 Jul 2002 20:35 
Paul DuBois02 Jul 2002 20:59 
Subject:Load data Input problem
From:Martin Scherer (psch@sonic.net)
Date:07/02/2002 08:35:29 PM
List:com.mysql.lists.mysql

I am trying to import a text file that is tab delimited.

I am using the following , but it only returns one line.

LOAD DATA INFILE '/Users/martinsc/documents/jillslist.txt' INTO TABLE Customers FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n';

Why would it do one line and then stop? MySQL indicates one line affected. The database is not empty and at first I suspected that the import stopped due to the same Customer_ID but that is not the case as the ID's for the first records do not exist in the database as they were deleted records.

Thank you Martin