Mysql load data not loading all reocrds

LOAD DATA LOCAL INFILE <<filename>>
INTO TABLE savingaccount
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
SET mychoice = -99,rib_nonrib = -99,reportdate = <<reportdate>>

mysql.RegisterLocalFile(filePath)
rows, err := tx.Exec(sqlQuery)
if err != nil {
panic(err)
return err
}

it is not loading all rows

it is not loading last 5 or 6 records

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.