For Programmers: Free Programming Magazines  


Home > Archive > ASP > October 2004 > Connecting to an AS/400 - Connection Issue with code









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Connecting to an AS/400 - Connection Issue with code
Brian Piotrowski

2004-10-22, 3:55 pm

Hi All,

I almost have the connection working for my connection to the AS/400 from an
ASP page. However, I have an error appearing, and I'm not sure how to fix
it. The code I have for connecting to the AS/400 is this:

<%
Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open "Provider=IBMDA400.DataSource.1;Persist Security
Info=False;User ID=XXXX;Password=XXXX;Data Source=192.168.0.20;Catalog
Library List=SPSL/SST32"
Set rsNINJA = Server.CreateObject("ADODB.Recordset")
SQL_query = "SELECT * FROM SPSL_SST32 where otsddt = '20041012' and
otdrvr='sandy'"
rsNINJA.open SQL_query, objConn, adOpenStatic, adLockReadOnly
intTotalColumns = RS.Fields.Count - 1
%>

However, when I execute the code, I get this:

ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.

/ninja/showstatus.asp, line 15

Line 15 in this case is the line that states "rsNINJA.open SQL_query,
objConn, adOpenStatic, adLockReadOnly".

If anyone could give me some ideas on what I need to fix here, I'd be
eternally grateful.

I know it is connecting, because if I change the password to a bad password,
I'll get an error stating the password is incorrect.

Thank you!

Brian.


SyrOrange

2004-10-22, 3:55 pm

I think you need to changes objConn to adoCon.

rsNINJA.open SQL_query, adoCon, adOpenStatic, adLockReadOnly


"Brian Piotrowski" <bpiotrowski@NOSPAM.simcoeparts.com> wrote in message
news:%238IpvbEuEHA.2116@TK2MSFTNGP14.phx.gbl...
> Hi All,
>
> I almost have the connection working for my connection to the AS/400 from

an
> ASP page. However, I have an error appearing, and I'm not sure how to fix
> it. The code I have for connecting to the AS/400 is this:
>
> <%
> Set adoCon = Server.CreateObject("ADODB.Connection")
> adoCon.Open "Provider=IBMDA400.DataSource.1;Persist Security
> Info=False;User ID=XXXX;Password=XXXX;Data Source=192.168.0.20;Catalog
> Library List=SPSL/SST32"
> Set rsNINJA = Server.CreateObject("ADODB.Recordset")
> SQL_query = "SELECT * FROM SPSL_SST32 where otsddt = '20041012' and
> otdrvr='sandy'"
> rsNINJA.open SQL_query, objConn, adOpenStatic, adLockReadOnly
> intTotalColumns = RS.Fields.Count - 1
> %>
>
> However, when I execute the code, I get this:
>
> ADODB.Recordset error '800a0bb9'
> Arguments are of the wrong type, are out of acceptable range, or are in
> conflict with one another.
>
> /ninja/showstatus.asp, line 15
>
> Line 15 in this case is the line that states "rsNINJA.open SQL_query,
> objConn, adOpenStatic, adLockReadOnly".
>
> If anyone could give me some ideas on what I need to fix here, I'd be
> eternally grateful.
>
> I know it is connecting, because if I change the password to a bad

password,
> I'll get an error stating the password is incorrect.
>
> Thank you!
>
> Brian.
>
>



Brian Piotrowski

2004-10-22, 3:55 pm

I saw that after I posted the message, and I changed it. It still didn't
seem to make a difference.

However, I removed "adOpenStatic, adLockReadOnly" from the statement, and
now I get a new error:

IBMDA400 Command error '80004005'
SQL0204: SPSL_SST32 in SYSOPR type *FILE not found. Cause . . . . . :
SPSL_SST32 in SYSOPR type *FILE was not found. If this is an ALTER TABLE
statement and the type is *N, a constraint was not found. If this is not an
ALTER TABLE statement and the type is *N, a function, procedure, or trigger
was not found. Recovery . . . : Change the name and try the request again.
If the object is a node group, ensure that the DB2 Multisystem product is
installed on your system and create a nodegroup with the CRTNODGRP CL
command.

/ninja/showstatus.asp, line 15

It says that it can't find the file. If that is the case, then where should
my file be located in order for this statement to find it? On our AS/400,
the file is in SPSL/SST32.

Thanks,

Brian.

"SyrOrange" <dougvandermark@netzero.net> wrote in message
news:%23GvXHhEuEHA.2804@TK2MSFTNGP14.phx.gbl...
> I think you need to changes objConn to adoCon.
>
> rsNINJA.open SQL_query, adoCon, adOpenStatic, adLockReadOnly
>
>
> "Brian Piotrowski" <bpiotrowski@NOSPAM.simcoeparts.com> wrote in message
> news:%238IpvbEuEHA.2116@TK2MSFTNGP14.phx.gbl...
from[color=darkred]
> an
fix[color=darkred]
> password,
>
>



Ray Costanzo [MVP]

2004-10-22, 3:55 pm

I don't really think this is the correct answer, but for me, I've found that
I cumbersomely always have to fully qualify the fields I'm querying even
when specifying the library list in the connection string.

SELECT Library.Member.Field FROM Library.Member...

Or maybe it was just

SELECT Field FROM Library.Member

So, try:

Library--------|
Member---------|-----|
Field----------|-----|--------|
| | |
SELECT * FROM SPSL.SST32.SPSL_SST32

(Is your field name really SPSL_SST32?)

Ray at work

"Brian Piotrowski" <bpiotrowski@NOSPAM.simcoeparts.com> wrote in message
news:efmejrEuEHA.220@TK2MSFTNGP15.phx.gbl...
>I saw that after I posted the message, and I changed it. It still didn't
> seem to make a difference.
>
> However, I removed "adOpenStatic, adLockReadOnly" from the statement, and
> now I get a new error:
>
> IBMDA400 Command error '80004005'
> SQL0204: SPSL_SST32 in SYSOPR type *FILE not found. Cause . . . . . :
> SPSL_SST32 in SYSOPR type *FILE was not found. If this is an ALTER TABLE
> statement and the type is *N, a constraint was not found. If this is not
> an
> ALTER TABLE statement and the type is *N, a function, procedure, or
> trigger
> was not found. Recovery . . . : Change the name and try the request again.
> If the object is a node group, ensure that the DB2 Multisystem product is
> installed on your system and create a nodegroup with the CRTNODGRP CL
> command.
>
> /ninja/showstatus.asp, line 15
>
> It says that it can't find the file. If that is the case, then where
> should
> my file be located in order for this statement to find it? On our AS/400,
> the file is in SPSL/SST32.
>
> Thanks,
>


Brian Piotrowski

2004-10-22, 3:55 pm

Got it! It was the underscore that was throwing my data off. When I
changed from SPSL_SST32 to SPSL.SST32 it worked!

Thanks so much Ray!

Brian.

"Ray Costanzo [MVP]" <my first name at lane 34 dot commercial> wrote in
message news:OAKmd9EuEHA.3016@TK2MSFTNGP12.phx.gbl...
> I don't really think this is the correct answer, but for me, I've found

that
> I cumbersomely always have to fully qualify the fields I'm querying even
> when specifying the library list in the connection string.
>
> SELECT Library.Member.Field FROM Library.Member...
>
> Or maybe it was just
>
> SELECT Field FROM Library.Member
>
> So, try:
>
> Library--------|
> Member---------|-----|
> Field----------|-----|--------|
> | | |
> SELECT * FROM SPSL.SST32.SPSL_SST32
>
> (Is your field name really SPSL_SST32?)
>
> Ray at work
>
> "Brian Piotrowski" <bpiotrowski@NOSPAM.simcoeparts.com> wrote in message
> news:efmejrEuEHA.220@TK2MSFTNGP15.phx.gbl...
and[color=darkred]
again.[color=darkred]
is[color=darkred]
AS/400,[color=darkred]
>



Stephanie Stowe

2004-10-26, 3:55 pm


"Brian Piotrowski" <bpiotrowski@NOSPAM.simcoeparts.com> wrote in message
news:efmejrEuEHA.220@TK2MSFTNGP15.phx.gbl...
> I saw that after I posted the message, and I changed it. It still didn't
> seem to make a difference.
>
> However, I removed "adOpenStatic, adLockReadOnly" from the statement, and
> now I get a new error:
>
> IBMDA400 Command error '80004005'
> SQL0204: SPSL_SST32 in SYSOPR type *FILE not found. Cause . . . . . :
> SPSL_SST32 in SYSOPR type *FILE was not found. If this is an ALTER TABLE
> statement and the type is *N, a constraint was not found. If this is not

an
> ALTER TABLE statement and the type is *N, a function, procedure, or

trigger
> was not found. Recovery . . . : Change the name and try the request again.
> If the object is a node group, ensure that the DB2 Multisystem product is
> installed on your system and create a nodegroup with the CRTNODGRP CL
> command.
>
> /ninja/showstatus.asp, line 15
>
> It says that it can't find the file. If that is the case, then where

should
> my file be located in order for this statement to find it? On our AS/400,
> the file is in SPSL/SST32.
>


SQL_query = "SELECT * FROM SPSL_SST32 where otsddt = '20041012' and
otdrvr='sandy'"


In my bad old days coding against AS/400, we could never rely on the library
list of the authenticated person. So we would do

SQL_query = "SELECT * FROM libraryname.SPSL_SST32"....

We actually had some code in application_onstart to determine if it was a
test system or a prod system and dynamically determined the library name
based on that...

Hope that helps.

> Thanks,
>
> Brian.
>
> "SyrOrange" <dougvandermark@netzero.net> wrote in message
> news:%23GvXHhEuEHA.2804@TK2MSFTNGP14.phx.gbl...
> from
> fix
in[color=darkred]
>
>



Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com