If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
i'm trying to load a textfile into a tabel (called login) with this sql-string:
load data local infile 'C:\\login.txt' into table login(login,pwd) LINES TERMINATED BY '\r\n';
But all i get is an error saying that i have a typo in my SQL string.
Weird thing is that when i remove the ' (login,pwd) part, it WILL read it, but then the tables are all wrong (coz i also have an autoincrement in first column)