Changes between Initial Version and Version 3 of Ticket #921


Ignore:
Timestamp:
04/25/09 17:33:44 (15 years ago)
Author:
Valik
Comment:

Please read WikiStart on how to create a good ticket. You're making this overly difficult.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #921

    • Property Milestone changed from 3.3.1.0 to
  • Ticket #921 – Description

    initial v3  
    11When i try to execute the following statements in autoit, it is retrieving wrong values from database, could any one help.
     2{{{
    23$sqlCon = objCreate("ADODB.Connection")
    34$objRecordSet = ObjCreate("ADODB.RecordSet")
     
    56$oRs = $sqlCon.Execute("select * FROM ccdata.rcmast where MSACT# = '8217'")
    67MSGBOX(0,"",$oRs.Fields("MSACT#").value)
    7 
     8}}}
    89Expected values is 8217, whereas it is retrieving 6213.
    910