<bdo id='DF2KV'></bdo><ul id='DF2KV'></ul>

<i id='DF2KV'><tr id='DF2KV'><dt id='DF2KV'><q id='DF2KV'><span id='DF2KV'><b id='DF2KV'><form id='DF2KV'><ins id='DF2KV'></ins><ul id='DF2KV'></ul><sub id='DF2KV'></sub></form><legend id='DF2KV'></legend><bdo id='DF2KV'><pre id='DF2KV'><center id='DF2KV'></center></pre></bdo></b><th id='DF2KV'></th></span></q></dt></tr></i><div id='DF2KV'><tfoot id='DF2KV'></tfoot><dl id='DF2KV'><fieldset id='DF2KV'></fieldset></dl></div>
  • <legend id='DF2KV'><style id='DF2KV'><dir id='DF2KV'><q id='DF2KV'></q></dir></style></legend>

      <small id='DF2KV'></small><noframes id='DF2KV'>

      1. <tfoot id='DF2KV'></tfoot>

        带有返回 SQL0418 参数的 iDB2 Select 命令

        iDB2 Select command with parameters returning SQL0418(带有返回 SQL0418 参数的 iDB2 Select 命令)
              <i id='sdSHB'><tr id='sdSHB'><dt id='sdSHB'><q id='sdSHB'><span id='sdSHB'><b id='sdSHB'><form id='sdSHB'><ins id='sdSHB'></ins><ul id='sdSHB'></ul><sub id='sdSHB'></sub></form><legend id='sdSHB'></legend><bdo id='sdSHB'><pre id='sdSHB'><center id='sdSHB'></center></pre></bdo></b><th id='sdSHB'></th></span></q></dt></tr></i><div id='sdSHB'><tfoot id='sdSHB'></tfoot><dl id='sdSHB'><fieldset id='sdSHB'></fieldset></dl></div>

              <small id='sdSHB'></small><noframes id='sdSHB'>

              <legend id='sdSHB'><style id='sdSHB'><dir id='sdSHB'><q id='sdSHB'></q></dir></style></legend>

              <tfoot id='sdSHB'></tfoot>

                <tbody id='sdSHB'></tbody>
                  <bdo id='sdSHB'></bdo><ul id='sdSHB'></ul>

                • 本文介绍了带有返回 SQL0418 参数的 iDB2 Select 命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在开发一个使用 IBM.Data.DB2.iSeries.dll 连接到 DB2 iSeries 7.1 数据库的 .NET 应用程序.

                  I'm developing a .NET application that connects to a DB2 iSeries 7.1 database, using the IBM.Data.DB2.iSeries.dll.

                  我需要执行一个包含 n 个参数的 SELECT 命令,这些参数在查询中定义为 @paramX,然后设置参数值,但是当我运行代码时,我得到一个 SQL048参数标记的使用无效..我到处搜索文档/示例,但我读过的所有内容都与我正在使用的代码一致.我错过了什么吗?如果这无效,最好的选择是什么?

                  I need to do a SELECT command that has n parameters which are defined in the query as @paramX, setting the parameter values afterwards, but when I run the code I get a SQL048 Use of parameter marker not valid.. I've searched everywhere for documentation / examples but everything I've read is in par with the code I'm using. Am I missing something? If this is not valid, what is the best alternative?

                  这是我用来测试的独立代码.

                  This is the isolated code I'm using to test.

                      static void Main(string[] args)
                      {
                          String myConnectionString = "DataSource=*******;Database=*******;UserId=*******;Password=*******;";
                          iDB2Connection myConnection = new iDB2Connection();
                          try{
                              myConnection.ConnectionString = myConnectionString;
                              myConnection.Open();
                  
                              var cmd = new iDB2Command("SELECT TIMESTAMP(DATE(@param0),TIME(@param1)) FROM SYSIBM.SYSDUMMY1", myConnection);
                  
                              cmd.Parameters.Add(new iDB2Parameter("@param0", iDB2DbType.iDB2Char));
                              cmd.Parameters["@param0"].Value = "1900-01-01";
                  
                              cmd.Parameters.Add(new iDB2Parameter("@param1", iDB2DbType.iDB2Char));
                              cmd.Parameters["@param1"].Value = "00.00.00";
                  
                              using (var reader = cmd.ExecuteReader())
                              {
                                  if (reader.HasRows)
                                  {
                                      reader.Read();
                                      StringBuilder sb = new StringBuilder();
                  
                                      for (int i = 0; i < reader.FieldCount; i++)
                                      {
                                          sb.AppendLine(reader[i].ToString().Trim());
                                      }
                  
                                      Console.Out.WriteLine(sb.ToString());
                                  }
                              }
                          }catch(Exception e)
                          {
                                  Console.Out.WriteLine(e.ToString());
                          }finally{
                              if (myConnection != null)
                              {
                                  myConnection.Close();
                              }
                          }
                          Console.Read();
                      }
                  

                  编辑

                  在一个不相关的答案中,我发现问题可能是 DB2 不知道参数的底层类型(这很奇怪,因为我是强类型的),因此,一个可能的解决方案是做一个将查询转换为预期的参数类型,如下所示:

                  EDIT

                  In an unrelated answer I've found that the problem might be that DB2 doesn't know the underlying type of the parameter (which is strange since I'm strong typing it), thus, a possible solution is to do a cast in the query to the expected param type, as such:

                  SELECT TIMESTAMP(DATE(cast(@param0 as char(10))),TIME(cast(@param1 as char(10)))) FROM SYSIBM.SYSDUMMY1

                  这确实有效,但是没有更好的方法来处理这个问题吗?

                  This actually worked but, isn't there any better way to handle this?

                  推荐答案

                  AFAIK,这是平台限制.这可以通过平台添加到应用程序异常的解释来确认*.话虽如此,由于我无法更改收到的参数并且无法访问它们将在查询中保存的信息,因此针对我的具体问题的最佳解决方案是执行 CASTTIMESTAMP 标量函数使用的类型,例如:

                  AFAIK, this is a platform limitation. that can be confirmed by an explanation that the platform adds to the application exception*. That being said, as I can't change the parameters I receive and don't have access to the info they are going to held in the query, the best solution to my specific problem is to do a CAST to the types that the TIMESTAMP scalar function uses, e.g.:

                  SELECT TIMESTAMP(cast(@param0 as DATE),cast(@param1 as TIME)) FROM SYSIBM.SYSDUMMY1

                  这篇关于带有返回 SQL0418 参数的 iDB2 Select 命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  C# namespace alias - what#39;s the point?(C# 命名空间别名 - 有什么意义?)
                  Using Xpath With Default Namespace in C#(在 C# 中使用具有默认命名空间的 Xpath)
                  IBM.Data.DB2.Core connection problems(IBM.Data.DB2.Core 连接问题)
                  Generating an EDMX from a DB2 Database(从 DB2 数据库生成 EDMX)
                  Datetime field overflow with IBM Data Server Client v9.7fp5(IBM Data Server Client v9.7fp5 的日期时间字段溢出)
                  Using entity Framework with .NET Core and DB2(将实体框架与 .NET Core 和 DB2 结合使用)
                    <tbody id='XLI80'></tbody>

                  1. <legend id='XLI80'><style id='XLI80'><dir id='XLI80'><q id='XLI80'></q></dir></style></legend>

                          <bdo id='XLI80'></bdo><ul id='XLI80'></ul>
                          • <small id='XLI80'></small><noframes id='XLI80'>

                            <i id='XLI80'><tr id='XLI80'><dt id='XLI80'><q id='XLI80'><span id='XLI80'><b id='XLI80'><form id='XLI80'><ins id='XLI80'></ins><ul id='XLI80'></ul><sub id='XLI80'></sub></form><legend id='XLI80'></legend><bdo id='XLI80'><pre id='XLI80'><center id='XLI80'></center></pre></bdo></b><th id='XLI80'></th></span></q></dt></tr></i><div id='XLI80'><tfoot id='XLI80'></tfoot><dl id='XLI80'><fieldset id='XLI80'></fieldset></dl></div>
                            <tfoot id='XLI80'></tfoot>