Changes between Initial Version and Version 3 of Ticket #921
- Timestamp:
- 04/25/09 17:33:44 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #921
- Property Milestone changed from 3.3.1.0 to
-
Ticket #921 – Description
initial v3 1 1 When i try to execute the following statements in autoit, it is retrieving wrong values from database, could any one help. 2 {{{ 2 3 $sqlCon = objCreate("ADODB.Connection") 3 4 $objRecordSet = ObjCreate("ADODB.RecordSet") … … 5 6 $oRs = $sqlCon.Execute("select * FROM ccdata.rcmast where MSACT# = '8217'") 6 7 MSGBOX(0,"",$oRs.Fields("MSACT#").value) 7 8 }}} 8 9 Expected values is 8217, whereas it is retrieving 6213. 9 10