‘Failed to query data: The index 1 is out of range.’

Clovertech Forums Cloverleaf ‘Failed to query data: The index 1 is out of range.’

  • Creator
    Topic
  • #121887
    RICK L. PRITCHETT
    Participant
      Getting the below error. From what I have read it has to do with not having the correct number of variables for the output.  The query should return multiple rows.  Do I need to account for the multiple rows?
      Select statement:
      SELECT ENTITY_ID, CONFIG_VL, CONFIG_CD, SITE_ADMN_GRP_ID, CLIENT_ST_ID
      What I have for output variables:
      RS_CLIENT_ST_ID,RS_CONFIG_CD,<wbr />RS_CONFIG_VL,RS_ENTITY_ID,RS_<wbr />SITE_ADMN_GRP_ID
      error:
      result      = ‘Failed to query data: The index 1 is out of range.’

       

    Viewing 5 reply threads
    • Author
      Replies
      • #121888
        Jim Kosloskey
        Participant

          More information needed. How are you using the DB (lookup, protocol)? Share as much information as you can even as an attachment.

          email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

        • #121892
          RICK L. PRITCHETT
          Participant

            Thanks for your assistance once again Jim.

            Tcl code calling look up.

            set values [dblookup “sofhirSearchTable.tbl” “SOF”]
            echo “values $values”

            Attached screenshot of the DB table setup.

             

            Attachments:
            You must be logged in to view attached files.
          • #121894
            RICK L. PRITCHETT
            Participant

              Using Advanced Database Lookup

            • #121895
              Jim Kosloskey
              Participant

                OK I have done something similar in my dynamic table lookup proc. I am fairly busy this AM but will take a closer look after lunch.

                email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

              • #121896
                Jim Kosloskey
                Participant

                  I think the primary issue is your IN Value in your Table lookup configuration. You have @value. What is wanted here is the name of the field in the DB (probably result set – use the ellipses button to see what is available). This is the field that will be matched with some value.

                  I have a case where I have a month name and number table with column names “name and number”. For my Table Lookup my In value is “name”. If I wanted to look up based on number, I would need another configuration using “number” as the In value.

                  In addition, I think your dblookup as coded will only return one tuple. If that is what you want, fine, but I think you want multiple tuples. In that case you need to use the -maxrow switch. If you use that switch and do not provide a value ALL tuples will be returned.

                  However, what is returned is a string with each column separated by a comma and each tuple terminated with hex 0d0a. In my mind that is not the best data to work with. Give a table with abbreviated Month name and number ( like this Jan 01, etc.) executing :

                  dblookup -maxrow month_all_rows.tbl “Jan” I get back this:

                  Jan,01
                  Feb,02
                  Mar,03
                  Apr,04
                  May,05
                  Jun,06
                  Jul,07
                  Aug,08
                  Sep,09
                  Oct,10
                  Nov,11
                  Dec,12

                  Which in hex looks like this:

                  hcitcl>oth_data2hex $stuff
                  0000000: 4a61 6e2c 3031 0d0a 4665 622c 3032 0d0a Jan,01..Feb,02..
                  0000010: 4d61 722c 3033 0d0a 4170 722c 3034 0d0a Mar,03..Apr,04..
                  0000020: 4d61 792c 3035 0d0a 4a75 6e2c 3036 0d0a May,05..Jun,06..
                  0000030: 4a75 6c2c 3037 0d0a 4175 672c 3038 0d0a Jul,07..Aug,08..
                  0000040: 5365 702c 3039 0d0a 4f63 742c 3130 0d0a Sep,09..Oct,10..
                  0000050: 4e6f 762c 3131 0d0a 4465 632c 3132 Nov,11..Dec,12

                  I find using the -metacolumname switch gives me what I consider a much easier to work with keyed list like this:

                  {RSMETACOLUMNNAME {{name} {number}}} {RSDATA {{{Jan} {01}} {{Feb} {02}} {{Mar} {03}} {{Apr} {04}} {{May} {05}} {{Jun} {06}} {{Jul} {07}} {{Aug} {08}} {{Sep} {09}} {{Oct} {10}} {{Nov} {11}} {{Dec} {12}}}}

                  The RSDATA Key has the data values as a list of lists, the RSMETACOLUMNNAME  key tells me which order the columns are in and what their names from the DB are.

                  By the way, if you are unilaterally returning multiple tuples (using * in your SQL), the value you provide (in my case “Jan”) does not matter, you are going to get the entire result set. I am not sure you can control where the retrieval from the DB begins – perhaps with a specific SQL Statement or Stored Procedure – I have not experimented with that.

                  So, if the maximum number of tuples returned turns out to be too large and you want to break the retrieval up into more manageable chunks, I am not sure if you can do that or how.

                   

                  email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

                  • #121898
                    RICK L. PRITCHETT
                    Participant

                      The setup in the screenshot gets me the desired results.  Is there no way to pass a value to the like statement?

                      Attachments:
                      You must be logged in to view attached files.
                    • #121901
                      Jim Kosloskey
                      Participant

                        I am not sure what you mean by the ‘like statement’.

                        email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

                      • #121902
                        RICK L. PRITCHETT
                        Participant

                          The last line of the Query has a like.

                        • #121904
                          Jim Kosloskey
                          Participant

                            Oh – I missed that.

                            email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

                          • #121906
                            RICK L. PRITCHETT
                            Participant

                              So Jim the only way to pass a variable would be to use a stored procedure

                            • #121914
                              Jim Kosloskey
                              Participant

                                That is the way I have done it primarily because that is the way I prefer. I negotiate an exchange protocol with the author of the Stored Procedure (I don’t write it – the owner of the DB does) as to what parameters will be exchanged and what they are as well as what is to be accomplished. I don’t care how the author accomplishes the goal.

                                But it looks like Peter Heggie has provided a solution to populating your ‘like’ statement – does that not work?

                                email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

                              • #121916
                                Jim Kosloskey
                                Participant

                                  It appears the dblookup command does not function exactly the same way the Xlate uses the lookup. Perhaps this is a bug.

                                  When I use a selection SQL to look for a subset of data in the DB Lookup Configuration, it functions properly in the Xlate, but when I use dblookup from Tcl I get the entire dataset not the subset – no matter what I do.

                                  So, Rick, I think if you want to use dblookup and the DB Lookup Table, you need to prepare to receive the entire dataset (using -maxrow potentially with -maxcolumnname then work the returned entire data set as a list – OR – use the Xlate to get the subset you want and ITERATE to work through that subset.

                                  Peter – have you tried using dblookup against your example to see if you get the same result as in the Xlate?

                                  email: jim.kosloskey@jim-kosloskey.com 30+ years Cloverleaf, 60 years IT – old fart.

                              • #121903
                                Peter Heggie
                                Participant

                                  This is how we use LIKE – if that is what you are looking for?

                                   

                                  select status from dbo.prl_charges WITH (NOLOCK) where keyvalue like ‘%’ + <keyvalue> + ‘%’

                                  in_column_name=keyvalue
                                  out_column_name=status

                                  Peter Heggie
                                  PeterHeggie@crouse.org

                              Viewing 5 reply threads
                              • You must be logged in to reply to this topic.