Hey i have a filename in this format RECORDddmmyyyy on my PC.
I want to include it into mysql table.I solve the problem of getting date but still have one issue,how to pass it to the database.
char filename ="RECORD"
i append later on the date to it as well as .txt and it works
I am using this statement to include it it works for one day only.
What should i write insted of RECORD14092010 so it can take "filename" instead of RECORD14092010
SQLWCHAR* SQL = L"LOAD DATA LOCAL INFILE 'C:/RECORD14092010.txt' INTO TABLE test FIELDS terminated by ','";