Jump to content

Recommended Posts

Posted

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.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...