| |
ziminski
Posts: 79
Score: 2
Joined: 1/8/2006
Status: offline
|
I am using $objConnection = New-Object -comobject ADODB.Connection $objRecordset = New-Object -comobject ADODB.Recordset I can connect to the db (oracle) and pull back the record set , $objRecordset.MoveFirst() do {$objRecordset.Fields.Item("terminalipaddress").Value; $objRecordset.MoveNext()} until ($objRecordset.EOF -eq $True) however the list of ips returned has the 1st 100 correct and the remaining 100 rows as ???????? ( literly as question marks) Is there a limit to how many rows can be returned from ADOB ? Is there a parameter I can set? Rick
|
|