i mysql içine csv dosyası .. gibi bir şey almak istiyorum:
load data local infile 'uniq.csv' into table tblUniq
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(uniqName, uniqCity, uniqComments)
http://www.tech-recipes.com/rx/2345/import_csv_file_directly_into_mysql/
but column names in csv and that in database table are different what should i do? i want to do it programmatically..