I have a table of about 500 records and 12 columns that I have saved in a CSV file. When I try to import that file into the mySQL DB table using the import feature in mySQLFront2.2, it creates all 500 Primary keys (in auto-increment so I get 500 rows returned), and the whole string gets printed to the first data field!
For example, I get
ID |FIRSTNAME |LASTNAME|ADDRESS|
___________________________________________________________
1 | john,smith,1234address,OH,12345 |"empty" |"empty"|...
2 | sara,jones,1234address,OH,12345 |"empty" |"empty"|...
>
500| fred,rambo,1234address,OH,12345 |"empty" |"empty"|...
___________________________________________________________
and so on. Sounds like delimiting issue or it's not exploding the CSV, but it's a pretty run of the mill CSV file. This is on a hosted mySQL service running mySQL 3.22.32. Any ideas?
Any help is greatly appreciated!
For example, I get
ID |FIRSTNAME |LASTNAME|ADDRESS|
___________________________________________________________
1 | john,smith,1234address,OH,12345 |"empty" |"empty"|...
2 | sara,jones,1234address,OH,12345 |"empty" |"empty"|...
>
500| fred,rambo,1234address,OH,12345 |"empty" |"empty"|...
___________________________________________________________
and so on. Sounds like delimiting issue or it's not exploding the CSV, but it's a pretty run of the mill CSV file. This is on a hosted mySQL service running mySQL 3.22.32. Any ideas?
Any help is greatly appreciated!