Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search a Database Using a LIKE QueryContent of Search a Database Using a LIKE Query.vbsMD5 Hash: FE8E60EC7CD6C6C52A30587C20A2FF00 |
||
' Description: Demonstration script that searches a database for all records where the Message field contains the word PowerPoint.
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 " & _ "Message Like '%PowerPoint%'", _ 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 :: |