×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Hi Folks (And I know there are some in this list!)
One of our customers has upgraded from V5R3 to V5R4 this weekend and has
encountered a problem. They have 2 .NET servers
1/. One Windows Server using Host Integration Server (OleDB) and .NET V2.0
(worked with V5R3 for years, now fails with V5R4)
2/. One Windows Server using the IBM .Net Managed DataProvider and .NET 3.5
(works Fine with V5R4)
The problem with Server 1 manifests itself in 2 ways
1/. Using SELECT * in the SQL statement returns a record but NONE of the
returned columns can be accessed (this produces a "System Index Out Of
Range" Error)
2/. When using NAMED columns in the SELECT statement only the first 3 or 4
columns can be accessed. Attempting to access any additional columns beyond
say the fourth returns the same "System Index Out Of Range" error.
The Customer is reporting it to IBM first (and then Microsoft) I just
wondered if anyone out there has encountered anything similar. Granted it is
old code and it also uses Host Integration Server OleDB connection but
surely it has to be something connected with V5R4
The code below is an example and gives some further detail
All help appreciated and many thanks ( at least the new solution works .sigh
of relief)
Maurice O'Prey
'--------------------
' build SQL statement
'--------------------
cmdOleDBSelect = New OleDBCommand("SELECT * from XXDTALIB.XXCMP100 where
CMUSR=? AND CMPWD=?", OleDBConnect)
1/. strOleDBXXCMP100 does retrieve and read one record matching the user
login credentials (I have confirmed this)
2/. As the code stands none of the columns from the reader can be accessed,
i.e. dtrOleDBXXCMP100("CMUSR").trim produces the error "System Index Out Of
Range"
3/. Changing the SQL SELECT statement to select named columns (I.e. removing
the Asterisk to select all columns) WORKS
("SELECT CMUSR,CMPWD from XXDTALIB.XXCMP100 where CMUSR=? AND CMPWD=?",
OleDBConnect)
However (and it's a big however)
Further down in the code (not shown here) other columns from the reader are
accessed and I can only add 3 named columns, e.g. select CMUSR,CMPWD,CMFNM
adding the fourth e.g. CMSNM (regardless of what it is) produces the same
"Index Out Of Range Message" when the column is accessed.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.