What we are going to do for now is what the other Paul suggested and send it
over as all alpha then move the fields into the correct file, we are using the
update of this file as a trigger to do stuff on the iSeries so it is not a very
elegant solution but hopefully it will work, on Monday morning, now I have an
appointment with the Friday evening traffic jam around Amsterdam. :-)
Thanks for the help chaps.
Steve
-----Oorspronkelijk bericht-----
Van: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx]Namens Paul Tuohy
Verzonden: vrijdag 24 november 2006 15:07
Aan: 'Midrange Systems Technical Discussion'
Onderwerp: RE: Updating files from the web
Steve,
Try getting rid of the single quotes around &NumField when you construct the
SQLINSERT statement. Enclosing the value in quotes indicates a character
literal.
Regards
Paul Tuohy
ComCon
www.comconadvisor.com
-----Original Message-----
From: midrange-l-bounces@xxxxxxxxxxxx
[mailto:midrange-l-bounces@xxxxxxxxxxxx] On Behalf Of Raby, Steve
Sent: 24 November 2006 13:53
To: MIDRANGE-L@xxxxxxxxxxxx
Subject: Updating files from the web
Hello All,
we have a problem trying to update a file from the web using ASP, this is in
our ASP script
SQLINSERT="INSERT INTO mylib.myfile (NumField)"
SQLINSERT=SQLINSERT & " VALUES ("
SQLINSERT=SQLINSERT &"'" &NumField &"')"
set connupdate = server.createobject("ADODB.Connection")
connupdate.open "Provider=IBMDA400;Data Source=xxx.xxx.xxx.x;", "ABC", "ABC"
connupdate.execute(SQLINSERT)
connupdate.close
The field Numfield is defined on the iSeries as 7,0 and we have tried both
packed and zoned.
The error we get is the following.
SQL0408: Value for column or variable NumField not compatible. Cause . . . .
. : The data type of the source value is not compatible with the data type
of the target column or variable NumField
If we make the field alphanumeric then it works perfectly but we would
rather not change half a dozen programs to make them handle an alhpa field
instead of the numeric.
Anybody any ideas?
TIA
Steve