Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Clear a Database TableContent of Clear a Database Table.vbsMD5 Hash: 82D37995C76A385B04C81994C5850E38 |
||
' Description: Demonstration script that deletes all the records in a table named Hardware from an ADO database with the DSN "Inventory."
Const adOpenStatic = 3 Const adLockOptimistic = 3 Const adUseClient = 3 Set objConnection = CreateObject("ADODB.Connection") Set objRecordset = CreateObject("ADODB.Recordset") objConnection.Open "DSN=Inventory;" objRecordset.CursorLocation = adUseClient objRecordset.Open "Delete * FROM Hardware" , objConnection, _ adOpenStatic, adLockOptimistic objConnection.Close | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |