From: Paul Lutus Date: 2006-08-25T05:35:09+09:00 Subject: Re: import txt file to mysql with ruby & load data local ?? Mike Turco wrote: > I'm trying to run this sql from within a ruby program > > LOAD DATA LOCAL INFILE 'C:\\test.txt' INTO TABLE `links` FIELDS > TERMINATED BY ';' ENCLOSED BY '"' ESCAPED BY '\\' LINES TERMINATED BY > '\r\n' > will this even work with ruby? Yes, if it will work with MySQL directly, it should work here as well. > what should syntax be? It should be valid MySQL syntax. Why not do some experiments? If you have valid MySQL strings, strings that created what you expected from past experience, those strings will work here as well. You can always test your syntax in advance using the command-line mysql interface: $ echo "string of MySQL commands;" | mysql -u $USER -p (password) Basically, this question is more about MySQL than it is about Ruby. Chances are your valid strings will work with Ruby's MySQL interface. Maybe some experimentation is in order. -- Paul Lutus http://www.arachnoid.com