Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Delete Multiple Records from a TableContent of Delete Multiple Records from a Table.vbsMD5 Hash: CDA6645B4D857C26BEF5B5A9A7EE3E0E |
||
' Description: Demonstration script that deletes all records from a database where the Department field is equal to Human Resources.
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 = inventory.mdb" objRecordSet.Open "DELETE * FROM GeneralProperties WHERE " & _ "Department = 'Human Resources'", _ objConnection, adOpenStatic, adLockOptimistic objConnection.Close | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |