zoukankan      html  css  js  c++  java
  • DLL version issue and SQL Parameters Issue

    1. 在工程中Reference dll: 

       1).specify version: true or false should be same.Other wise, there will be conflick between these dlls expecily that have depence.

       2). We can set all of them are true or all false.

    2.SqlException: The parameterized query ## expects the pa... RSS

    Resolved.

            
    public void UpdateTableInfo(string command, string dbTableName, DataTable dataTable, IList<string> parameters) 
            { 
                _dataAdapter.InsertCommand 
    = new SqlCommand(@command); 
                IList tableColumnTypes 
    = GetTableColumnTypes(dbTableName); 
                
    for (int i = 0; i < parameters.Count; i++
                { 
                    _dataAdapter.InsertCommand.Parameters.Add(
    new SqlParameter("@" + parameters[i], tableColumnTypes[i])); 
                    _dataAdapter.InsertCommand.Parameters[
    "@" + parameters[i]].SourceVersion = DataRowVersion.Current; 
                    _dataAdapter.InsertCommand.Parameters[
    "@" + parameters[i]].SourceColumn = dataTable.Columns[i].ColumnName; 
                } 
                SqlConnection conn 
    = DbConnection; 
                _dataAdapter.InsertCommand.Connection 
    = conn; 
                
    using (conn) 
                { 
                    _dataAdapter.Update(dataTable.DataSet, dbTableName); 
                } 
            }

    I'm wondering if my problem possibly has to do with null or empty values in my DataTable ("dataTable"). The exception error seems to imply that a parameter value was not supplied in the parameterized query? Like the value of @Value0 was empty or null in my DataTable (for a particular row)?

    If this is the case, how can I handle empty or null values in my DataTable so that this problem does not arise? Insert a DbNull value into my database for each empty or null value in the DataTable? How might that be best accomplished? I guess I would have to allow NULL values in my database table to do this?

    做个快乐的自己。
  • 相关阅读:
    深入理解ThreadLocal
    synchronized与Lock的区别与使用
    1亿个数中找出最小的100个数--最小堆
    B+/-Tree原理(mysql索引数据结构)
    深入理解token
    shiro(java安全框架)
    第一次项目上Linux服务器(四:CentOS6下Mysql数据库的安装与配置(转))
    第一次项目上Linux服务器(三:安装Tomcat及相关命令)
    第一次项目上Linux服务器(二:——安装jdk)
    第一次项目上Linux服务器(一:远程连接服务器)
  • 原文地址:https://www.cnblogs.com/Jessy/p/2068552.html
Copyright © 2011-2022 走看看