无法强制转换类型为';的对象;System.Data.SqlClient.SqlInternalConnectio

本文关键字:对象 System Data SqlInternalConnectio SqlClient 转换 类型 | 更新日期: 2023-09-27 17:58:47

我一直收到标题中提到的错误,我似乎无法通过。

这是我的代码:

strSig = sigPlusNET1.GetKeyReceiptAscii()
            sigPlusNET1.LCDRefresh(1, 210, 3, 14, 14); 
            if (sigPlusNET1.NumberOfTabletPoints() > 0)
            {
                sigPlusNET1.LCDRefresh(0, 0, 0, 240, 64);
                Font f = new System.Drawing.Font("Arial", 9.0F, System.Drawing.FontStyle.Regular);
                sigPlusNET1.LCDWriteString(0, 2, 35, 25, f, "Semnatura a fost salvata.");
                SqlConnection connection = new SqlConnection("Data Source=xxx;Initial Catalog=xxx;Persist Security Info=True;User ID=xxx;Password=xxx; MultipleActiveResultSets=True");
                connection.Open();
                SqlCommand cmd = new SqlCommand("INSERT INTO cstmae_Signatures(Signature)values("+ strSig +")", connection);
                cmd.ExecuteNonQuery();
                connection.Close();

这是一个标准的Forms应用程序。

我做错了什么?我已经尝试过将strSig转换为Int32,但什么都没有,现在的类型是正在发送的8位int,但问题是sql连接有问题。

无法强制转换类型为';的对象;System.Data.SqlClient.SqlInternalConnectio

我有同样的错误"无法将类型为"System.Data.SqlClient.SqlInternalConnectionTds"的对象强制转换为类型为"System.Data.SqlClient.SqlInternalConnectionSmi"。"

query = "UPDATE dbo.History SET Volume = @Volume WHERE Symbol = @Symbol AND [start] = @Date; ";
using (SqlConnection con = new SqlConnection(builder.ConnectionString))
                    using (SqlCommand cmd = new SqlCommand(query, con))
                    {
cmd.Parameters.Add("@Symbol", SqlDbType.NVarChar, 50).Value = ti.Symbol;
                                cmd.Parameters.Add("@Date", SqlDbType.DateTime).Value = ti.Date;
                                cmd.Parameters.Add("@Volume ", SqlDbType.Float).Value = ti?.Volume;
try
                        {
                            cmd.ExecuteNonQuery();
                        }
                        catch (System.InvalidCastException e)
                        {
                            throw;
                        }
                        con.Close();
}

数据库中不会保存任何内容,获取消息的唯一方法是通过cmd的"非公共成员"。ExecuteNonQuery()方法。当我检查参数值时,它们都是正确的。

相关文章: