mclard Posted September 6, 2006 Share Posted September 6, 2006 HiIm trying to import the contents of a flat text file into a mysql database, what ive got so far kind of works but it only enters the first line. The more i look at it it looks like mysql syntax but im at a loss of what to do. Can anyone offer any advice.FLAT FILE FORMAT...entry1entry2entry3[code] $dbname="project";$dbc = @mysql_connect ('localhost', 'root', '') or die (mysql_error());@mysql_select_db("$dbname"); $SQL = "LOAD DATA LOCAL INFILE 'path to file' INTO TABLE `user` FIELDS TERMINATED BY ' ' ENCLOSED BY '' ESCAPED BY ' ' LINES TERMINATED BY '\r\n'";$result = mysql_query($SQL); [/code] Link to comment https://forums.phpfreaks.com/topic/19881-problem-importing-flat-file-data-into-mysql/ Share on other sites More sharing options...
Barand Posted September 6, 2006 Share Posted September 6, 2006 try[code]$SQL = "LOAD DATA INFILE 'path to file' INTO TABLE `user` FIELDS TERMINATED BY ' ' LINES TERMINATED BY '\r\n'";[/code] Link to comment https://forums.phpfreaks.com/topic/19881-problem-importing-flat-file-data-into-mysql/#findComment-86988 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.