我正在使用Informix数据库,我正在尝试获取特定项目的数据并将其存储在数据表中。
我检查了以下内容:
1)连接字符串看起来不错
2)连接能够打开
3)我在创建表适配器的数据集上使用了web.config中的相同连接字符串,并且能够检索记录。
这是我正在使用的代码:
var connectionstring = ConfigurationManager.ConnectionStrings["TestDataTable"].ConnectionString;
OdbcConnection con = new OdbcConnection(connectionstring);
//con.ConnectionString = connectionstring;
if (TxtItem.Text != hold_item)
{
con.Open();
OdbcCommand cmd = new OdbcCommand(@"Select t_item,t_idsc,t_upct,
t_item_upc,t_ctyp,t_citg,
t_best,t_disp,t_mold,t_csel
from informix.tsckcm907
where t_item = " + stitem, con);
OdbcDataReader myReader = cmd.ExecuteReader();
DataTable testdt = new DataTable();
testdt.Load(myReader);
foreach (DataRow row in testdt.Rows)
{
lbldesc.Text = row["t_idsc"].ToString();
Spanish_Item();
{
DropDownList2.SelectedIndex = 1;
object stlanguage = 1;
hold_language = Convert.ToString(stlanguage);
TxtBestBefore.Text = row["t_best"].ToString();
holdbest = Convert.ToInt16(TxtBestBefore.Text);
}
}
myReader.Close();
myReader.Dispose();
cmd.Dispose();
con.Close();
con.Dispose();
}
在调试模式下,我的错误发生在OdbcDataReader行: 错误讯息:
An exception of type 'System.Data.Odbc.OdbcException'
occurred in System.Data.dll but was not handled in user code
Additional information: ERROR [42000] [Informix]
[Informix ODBC Driver][Informix]A syntax error has
occurred.
答案 0 :(得分:0)
如果您的Informix ODBC驱动程序说:“发生了语法错误”,那么您必须检查您的SQL语句:
"Select t_item,... from informix.tsckcm907 where t_item = " + stitem
我认为stitem
出了点问题。我们不知道它是什么类型和值,但如果它的类型是某种字符串或日期,那么它可能是错误的形式。最简单的方法是提取完整的SQL语句(只需在执行前打印)并将其与某个数据库编辑器一起使用(例如来自Informix的db_access
)。然后使它在SQL编辑器中工作并将stitem
变量转换为可接受的形式(添加引号,转义内部引号,转义特殊字符等)。
我还建议使用PreparedStatement将查询与数据分开。这样您就不必担心stitem
表单了。没有引号,没有转义,只是在查询字符串中添加占位符并单独添加值。
我不使用C#,但我发现C#可以使用带有未命名参数的preapred语句:
cmd.CommandText = "SELECT ... FROM ... WHERE t_item = ?";
cmd.Parameters.Add("@t_item", ObdcType.VarChar, 200).Value = t_item;
或使用命名参数:
cmd.CommandText = "SELECT ... FROM ... WHERE t_item = @t_item";
cmd.Parameters.Add("@t_item", ObdcType.VarChar, 200).Value = t_item;
我使用ODBC中的未命名参数,因此Informix驱动程序可以使用这些参数,但您必须自己使用C#进行检查。