Mysql
 sql >> Database >  >> RDS >> Mysql

Leggi un file di testo e trasferisci i contenuti nel database mysql

Quello che potresti cercare è la funzione integrata di MySQL LOAD DATA INFILE per caricare un file di testo contenente valori per un database in un database.

Esempio:

LOAD DATA INFILE 'data.txt' INTO TABLE my_table;

Puoi anche specificare i delimitatori all'interno del tuo file di testo, in questo modo:

LOAD DATA INFILE 'data.txt' INTO TABLE my_table FIELDS TERMINATED BY '|';

Aggiornamento:

Ecco un esempio funzionante, ho caricato un file di dati di prova qui ed ecco il mio codice PHP.

$string = file_get_contents("http://www.angelfire.com/ri2/DMX/data.txt", "r");
$myFile = "C:/path/to/myFile.txt";
$fh = fopen($myFile, 'w') or die("Could not open: " . mysql_error());
fwrite($fh, $string);
fclose($fh);

$sql = mysql_connect("localhost", "root", "password");
if (!$sql) {
    die("Could not connect: " . mysql_error());
}
mysql_select_db("my_database");
$result = mysql_query("LOAD DATA INFILE '$myFile'" .
                      " INTO TABLE test FIELDS TERMINATED BY '|'");
if (!$result) {
    die("Could not load. " . mysql_error());
}

Ecco come appariva la tabella prima di eseguire il mio codice PHP:

mysql> select * from test;
+--------+-----------+------------+
| DataID | Name      | DOB        |
+--------+-----------+------------+
|    145 | Joe Blogs | 17/03/1954 |
+--------+-----------+------------+
1 row in set (0.00 sec)

Ed ecco il risultato dopo:

mysql> select * from test;
+--------+-------------+------------+
| DataID | Name        | DOB        |
+--------+-------------+------------+
|    145 | Joe Blogs   | 17/03/1954 |
|    234 | Carl Jones  | 01/01/1925 |
|     98 | James Smith | 12/09/1998 |
|    234 | Paul Jones  | 19/07/1923 |
|    986 | Jim Smith   | 12/01/1976 |
+--------+-------------+------------+
5 rows in set (0.00 sec)