Bigfoot Posted May 7, 2007 Share Posted May 7, 2007 I am not good at English. I'm sorry. I am using version 3.2.2.0 of AutoIT. The following tables are created for ORACLE8i. CREATE TABLE TEST ( QTY_REQ NUMBER(13), QTY_REQ_STRINGS VARCHAR2(13) ) The following data is set in this table. insert into TEST (QTY_REQ, QTY_REQ_STRINGS) values('214748355', '214748355'); And, the following logics are executed with AutoIT. While Not $dtRS.EOF ConsoleWrite(@AutoItVersion & ":" & $dtRS("QTY_REQ").Value & ":" & $dtRS("QTY_REQ_STRINGS").Value & @CR) $dtRS.MoveNext WEnd The result is as follows. 3.2.2.0:214748352:214748355 214748355 why--Do it become >214748352? To similar 2147483554-->2147483520 It was the same also in the latest BETA version. Please help me. My best regards. Link to comment Share on other sites More sharing options...
Bigfoot Posted May 8, 2007 Author Share Posted May 8, 2007 Is this problem the same as that "http://www.autoitscript.com/forum/index.php?showtopic=37892" ?Isn't this a bug of AutoIT?Or, the specification?Please,help me! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now