Szövegfájl tartalmának beszúrása a táblába???
LOAD DATA LOCAL INFILE esetén honnan várja a mySQL a txt fájlt? Hová tegyem? Mi lesz az elérési útja?
Ha az index.htm fájl mellé teszem és az elérési út simán "data.txt", akkor nem illeszti be a táblába????
Help!!!4
■ Ha az index.htm fájl mellé teszem és az elérési út simán "data.txt", akkor nem illeszti be a táblába????
Help!!!4
Re: Szövegfájl tartalmának beszúrása a táblába???
Note that these rules mean a file named as `./myfile.txt' is read from the server's data directory, whereas the same file named as `myfile.txt' is read from the database directory of the current database. For example, the following LOAD DATA statement reads the file `data.txt' from the database directory for db1 because db1 is the current database, even though the statement explicitly loads the file into a table in the db2 database:
mysql> USE db1;
mysql> LOAD DATA INFILE "data.txt" INTO TABLE db2.my_table;
Re: Szövegfájl tartalmának beszúrása a táblába???