How is your file structured? You have said FIELDS TERMINATED BY '' which doesn't really make sense, each field in the must be terminated by a specified character and this must be told to MySQL. So if you're file looks like this (comma terminated fields)
jim, benson
bil, hevenal
tim, melody
you would use the command
LOAD DATA INFILE 'C:\\fname.txt' INTO TABLE `118` FIELDS TERMINATED BY ',' ESCAPED BY '\\' LINES TERMINATED BY '\n'( `fname` )
to load the file and you would get
Field one Field two
jim benson
bil havenal
tim melody
in the table
HTH
Bubble