次のコードに問題があります:-
private void btnUpload_Click(object sender, EventArgs e)
{
string nm = txtFilename.Text;
string qry = "LOAD DATA INFILE 'D:\\HHTFiles\\" + nm + "' INTO TABLE `table1`.`location`FIELDS TERMINATED BY '-->'LINES TERMINATED BY '\r\n'(Barcode,BinLoc);";
cmd = new OdbcCommand(qry, con);
int i = cmd.ExecuteNonQuery();
if (i > 0)
{
MessageBox.Show(" File loaded successfully...");
}
}
private void btnBrowse_Click(object sender, EventArgs e)
{
OpenFileDialog openfiledailog1 = new OpenFileDialog();
openfiledailog1.InitialDirectory = "D:\\HHTFiles\\";
openfiledailog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
openfiledailog1.FilterIndex = 2;
openfiledailog1.RestoreDirectory = true;
if (openfiledailog1.ShowDialog() == DialogResult.OK)
{
try
{
if ((openfiledailog1.OpenFile()) != null)
{
txtFilename.Text = openfiledailog1.SafeFileName.ToString();
}
}
catch (Exception ex)
{
MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
}
}
}
クエリで完全なファイル パスを次のように指定すると、正しく実行されますtable1
。location
r\n'(バーコード、BinLoc);"; ただし、ファイルパスが文字列変数で渡されるとエラーがスローされます。
エラー:- エラー [HY000] [MySQL][ODBC 5.1 ドライバー][mysqld-5.1.48-community]ファイル 'D:HHTFilesABC.txt' が見つかりません (エラーコード: 2)