【发布时间】:2014-07-04 14:24:42
【问题描述】:
未处理的异常:System.Data.OleDb.OleDbException:SQL:未找到列“Q578P5”...
我在 VS2010 C#.net 中编写了一个应用程序,它将数据从 SQL 表读取到数据表中,然后将其写入 foxpro 表中。
如果在记录 578 处失败,则在 Inventory 表上。在 Customer 表上,它在记录 'Q617P78' 处失败
我已通过从 SQL 表中删除一些记录来测试数据问题,但错误仍然发生在相同的记录号上,尽管该记录号不是同一条记录。
我尝试将数据表记录写入 CSV,效果很好。 FoxPro 表似乎有问题。
库存记录比客户记录短。因此,我怀疑是内存问题。这一切都完全按预期运行,直到记录编号 X。
任何建议表示赞赏
namespace PLADO
{
class Program
{
static void Main(string[] args)
// CUSTOMERS
{ // Create 2 tables - one for SQL and one for Vision
DataTable VisionCustomerResultSet = new DataTable();
DataTable SQLCustomerResultSet = new DataTable();
// read data from INI
string INIFilePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\DBCS\\PLExe.ini";
var ThisAppINIFile = new IniFile(INIFilePath.Trim());
var SQLServer = ThisAppINIFile.Read("Glo:SQLServerInstance", "Preserved");
var SQLDatabase = ThisAppINIFile.Read("Glo:SQLDatabase", "Preserved");
var SQLTrustedConnection = ThisAppINIFile.Read("Glo:TrustedConnection", "Preserved");
var SQLUsername = ThisAppINIFile.Read("Glo:SQLUsername", "Preserved");
var SQLUserPassword = ThisAppINIFile.Read("Glo:SQLUserPassword", "Preserved");
var SQLConnectionString = "Server=" + SQLServer + ";Database=" + SQLDatabase + ";User ID=" + SQLUsername + ";Password=" + SQLUserPassword + ";";
var ADOConnectionString = ThisAppINIFile.Read("Glo:ADOConnectionString", "Preserved");
// Open the SQL database
SqlConnection sqlCon = new SqlConnection(SQLConnectionString);
sqlCon.Open();
// Open the Foxpro database
OleDbConnection oleDbConnection1 = new OleDbConnection(ADOConnectionString);
oleDbConnection1.Open();
// read the SQL values into DataTAble
string commandString = "SELECT [uniqueid],[ledgerno],[accountno],[sortcode],(clipped for readability)...[zgrouping],[zclegacy],[zmarket] FROM [PrimeLaundry].[dbo].[Vision_Customer]";
SqlCommand sqlCmd = new SqlCommand(commandString, sqlCon);
SqlDataAdapter sda = new SqlDataAdapter(sqlCmd);
sda.Fill(SQLCustomerResultSet); // read the select statement results into the dataTable
// cycle through DataTable
foreach (DataRow row in SQLCustomerResultSet.Rows)
{ // read a matching record from Foxpro
Console.WriteLine(row["AccountNo"]);
string selectStatement = "select accountno from Customer where accountno = '" + row["AccountNo"] + "'";
string insertStatement = "INSERT INTO CUSTOMER ([uniqueid],[ledgerno],[accountno],[sortcode],[title], (clipped for readability)...,[zclegacy],[zmarket])"
+ " Values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)";
string updateStatement = "UPDATE CUSTOMER SET sortcode = ?,title = ?,periods = ?,groupno = ? (clipped for readability)... ?,ordnoreq = ?,zrunno = ?,zgrouping = ?,zclegacy = ?,zmarket = ? where Accountno = '" + row["AccountNo"] + "'";
OleDbCommand selectCommand = new OleDbCommand(selectStatement, oleDbConnection1);
OleDbCommand insertCommand = new OleDbCommand(insertStatement, oleDbConnection1);
OleDbCommand updateCommand = new OleDbCommand(updateStatement, oleDbConnection1);
String selectQueryResult = (String)selectCommand.ExecuteScalar();
if (string.IsNullOrEmpty(selectQueryResult))
{
insertCommand.Parameters.Add("uniqueid", OleDbType.VarChar).Value = row["uniqueid"];
insertCommand.Parameters.Add("ledgerno", OleDbType.Numeric).Value = row["ledgerno"];
insertCommand.Parameters.Add("accountno", OleDbType.VarChar).Value = row["accountno"];
insertCommand.Parameters.Add("sortcode", OleDbType.VarChar).Value = row["sortcode"];
(Clipped for readability)
row["zgrouping"];
insertCommand.Parameters.Add("zclegacy", OleDbType.VarChar).Value = row["zclegacy"];
insertCommand.Parameters.Add("zmarket", OleDbType.VarChar).Value = row["zmarket"];
int count = insertCommand.ExecuteNonQuery();
}
else
{
updateCommand.Parameters.Add("Sortcode", OleDbType.VarChar, 2).Value = row["sortcode"];
updateCommand.Parameters.Add("title", OleDbType.VarChar).Value = row["title"];
updateCommand.Parameters.Add("periods", OleDbType.Numeric).Value = row["periods"];
updateCommand.Parameters.Add("groupno", OleDbType.Numeric).Value = row["groupno"]; (Clipped for readability)
updateCommand.Parameters.Add("zclegacy", OleDbType.VarChar).Value = row["zclegacy"];
updateCommand.Parameters.Add("zmarket", OleDbType.VarChar).Value = row["zmarket"];
int count = updateCommand.ExecuteNonQuery();
} // end of if (string.IsNullOrEmpty...
} // end of foreach look
// INVENTORY
// Create 2 tables - one for SQL and one for Vision
DataTable VisionInventoryResultSet = new DataTable();
DataTable SQLInventoryResultSet = new DataTable();
// read the SQL values into DataTAble
commandString = "SELECT [uniqueid],[ledgerno],[accountno],[sortcode],[title],[periods],[groupno],[taxcode],[taxcode2],[leadtime],[reorder],[binno],[alternate],[remarks],[salesunit],[purchunit],[weight],[ctryorigin],[commodity],[spratio],[price1],(Clipped for readability)...[kitcomp],[useredit],[lastdeldat],[maxreorder],[zprodgroup] FROM [PrimeLaundry].[dbo].[Vision_Inventory]";
sqlCmd = new SqlCommand(commandString, sqlCon);
sda = new SqlDataAdapter(sqlCmd);
sda.Fill(SQLInventoryResultSet); // read the select statement results into the dataTable
// cycle through DataTable
foreach (DataRow row in SQLInventoryResultSet.Rows)
{ // read a matching record from Foxpro
string selectStatement = "select accountno from Inventry where accountno = '" + row["AccountNo"] + "'";
string insertStatement = "INSERT INTO INVENTRY ([uniqueid],[ledgerno],[accountno],[sortcode],[title],[periods],[groupno],[taxcode],[taxcode2],[leadtime],[reorder],[binno],[alternate],(Clipped for readability)...,[zprodgroup],[zilegacy])"
+ " Values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,' ')";
string updateStatement = "UPDATE INVENTRY SET sortcode = ?,title = ?,periods = ?,groupno = ?,taxcode = ?,taxcode2 = ?,leadtime = ?,reorder = ?,binno = ?,alternate = ?,remarks = ?,salesunit = ?,purchunit = ?(Clipped for readability)...maxreorder = ?,zprodgroup = ? where Accountno = '" + row["AccountNo"] + "'";
OleDbCommand selectCommand = new OleDbCommand(selectStatement, oleDbConnection1);
OleDbCommand insertCommand = new OleDbCommand(insertStatement, oleDbConnection1);
OleDbCommand updateCommand = new OleDbCommand(updateStatement, oleDbConnection1);
string selectQueryResult = (String)selectCommand.ExecuteScalar();
if (string.IsNullOrEmpty(selectQueryResult))
{
insertCommand.Parameters.Add("uniqueid", OleDbType.VarChar).Value = row["uniqueid"];
insertCommand.Parameters.Add("ledgerno", OleDbType.Numeric).Value = row["ledgerno"];
insertCommand.Parameters.Add("accountno", OleDbType.VarChar).Value = row["accountno"];
insertCommand.Parameters.Add("sortcode", OleDbType.VarChar).Value = row["sortcode"]; (Clipped for readability)...
insertCommand.Parameters.Add("maxreorder", OleDbType.Numeric).Value = row["maxreorder"];
insertCommand.Parameters.Add("zprodgroup", OleDbType.VarChar).Value = row["zprodgroup"];
int count = insertCommand.ExecuteNonQuery();
}
else
{
updateCommand.Parameters.Add("Sortcode", OleDbType.VarChar, 2).Value = row["sortcode"];
updateCommand.Parameters.Add("title", OleDbType.VarChar).Value = row["title"];
updateCommand.Parameters.Add("periods", OleDbType.Numeric).Value = row["periods"]; (Clipped for readability)...
updateCommand.Parameters.Add("zprodgroup", OleDbType.VarChar).Value = row["zprodgroup"];
int count = updateCommand.ExecuteNonQuery();
}
}
oleDbConnection1.Close();
sqlCon.Close();
}
}
}
【问题讨论】:
标签: sql datatable oledb foxpro