<% '-------------------------------------------------------------------- ' Microsoft ADO ' Copyright (c) 1996-1998 Microsoft Corporation. ' ' ADO constants include file for VBScript ' ' modified by john@asp101.com to remove unused constants '-------------------------------------------------------------------- '---- CursorTypeEnum Values ---- Const adOpenForwardOnly = 0 Const adOpenKeyset = 1 Const adOpenDynamic = 2 Const adOpenStatic = 3 '---- LockTypeEnum Values ---- Const adLockReadOnly = 1 Const adLockPessimistic = 2 Const adLockOptimistic = 3 Const adLockBatchOptimistic = 4 '---- CursorLocationEnum Values ---- Const adUseServer = 2 Const adUseClient = 3 '---- CommandTypeEnum Values ---- Const adCmdUnknown = &H0008 Const adCmdText = &H0001 Const adCmdTable = &H0002 Const adCmdStoredProc = &H0004 Const adCmdFile = &H0100 Const adCmdTableDirect = &H0200 'Added by jeremy@gexweb.net for admin area Const adExecuteNoRecords = &H00000080 Const adAffectCurrent = 1 %>