Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search a Database Using Numeric CriteriaContent of Search a Database Using Numeric Criteria.vbsMD5 Hash: 1F83731E811159DACAA521E319A63EA2 |
||
' Description: Demonstration script that searches a database for all records where the event code is equal to the numeric value 1054.
Const adOpenStatic = 3 Const adLockOptimistic = 3 Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") objConnection.Open _ "Provider = Microsoft.Jet.OLEDB.4.0; " & _ "Data Source = eventlogs.mdb" objRecordSet.Open "SELECT * FROM EventTable " & _ "WHERE EventCode = 1054", _ objConnection, adOpenStatic, adLockOptimistic objRecordSet.MoveFirst Wscript.Echo "Number of records: " & objRecordset.RecordCount objRecordSet.Close objConnection.Close | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |