I have a called file cats.txt which count data that were solitary of a DB
Access.
I need to export these data for a table 'cats' inside of a DB done in MySql.

In MySql I can execute this procedure in the following way:

Load data local infile "gatos.txt"
into table gatos
fields
terminated by ','
enclosed by '"'
(Id, Nome, Raça);

I need to know how I can accomplish this same operation but using PHP

Thank you

Paulo



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to