OleDbParameter outPutParament = new OleDbParameter();  //定义一个SQL参数量
            outPutParament.ParameterName = "@affectNumber";  //存入以参数名称
            outPutParament.DbType = DbType.Int32;
            //outPutParament.Size = 100;
            outPutParament.Direction = ParameterDirection.Input;  //指定参数是输出参数
            //Direction指定该参数是只输入参数或只输出参数或双向参数或存储过程返回参数
            CommandDB.Parameters.Add(outPutParament);  //将此参数添加到CommandDB
           //return CommandDB.ExecuteNonQuery();
            return CommandDB.ExecuteNonQuery();执行到return 时 报下面这个错误
System.Data.OleDb.OleDbDataAdapter 內部錯誤: 無效的參數存取子: 1 BADBINDINFO