<% '-------------------------------------------------------------------- ' Microsoft ADO ' ' (c) 1996 Microsoft Corporation. All Rights Reserved. ' ' ' ' ADO constants include file for VBScript ' '-------------------------------------------------------------------- '---- CursorTypeEnum Values ---- Const adOpenForwardOnly = 0 Const adOpenKeyset = 1 Const adOpenDynamic = 2 Const adOpenStatic = 3 '---- CursorOptionEnum Values ---- Const adHoldRecords = &H00000100 Const adMovePrevious = &H00000200 Const adAddNew = &H01000400 Const adDelete = &H01000800 Const adUpdate = &H01008000 Const adBookmark = &H00002000 Const adApproxPosition = &H00004000 Const adUpdateBatch = &H00010000 Const adResync = &H00020000 '---- LockTypeEnum Values ---- Const adLockReadOnly = 1 Const adLockPessimistic = 2 Const adLockOptimistic = 3 Const adLockBatchOptimistic = 4 '---- CursorLocationEnum Values ---- Const adUseClient = 1 Const adUseServer = 2 Const adUseClientBatch = 3 '---- DataTypeEnum Values ---- Const adEmpty = 0 Const adTinyInt = 16 Const adSmallInt = 2 Const adInteger = 3 Const adBigInt = 20 Const adUnsignedTinyInt = 17 Const adUnsignedSmallInt = 18 Const adUnsignedInt = 19 Const adUnsignedBigInt = 21 Const adSingle = 4 Const adDouble = 5 Const adCurrency = 6 Const adDecimal = 14 Const adNumeric = 131 Const adBoolean = 11 Const adError = 10 Const adUserDefined = 132 Const adVariant = 12 Const adIDispatch = 9 Const adIUnknown = 13 Const adGUID = 72 Const adDate = 7 Const adDBDate = 133 Const adDBTime = 134 Const adDBTimeStamp = 135 Const adBSTR = 8 Const adChar = 129 Const adVarChar = 200 Const adLongVarChar = 201 Const adWChar = 130 Const adVarWChar = 202 Const adLongVarWChar = 203 Const adBinary = 128 Const adVarBinary = 204 Const adLongVarBinary = 205 '---- ConnectPromptEnum Values ---- Const adPromptAlways = 1 Const adPromptComplete = 2 Const adPromptCompleteRequired = 3 Const adPromptNever = 4 '---- ConnectModeEnum Values ---- Const adModeUnknown = 0 Const adModeRead = 1 Const adModeWrite = 2 Const adModeReadWrite = 3 Const adModeShareDenyRead = 4 Const adModeShareDenyWrite = 8 Const adModeShareExclusive = &Hc Const adModeShareDenyNone = &H10 '---- IsolationLevelEnum Values ---- Const adXactUnspecified = &Hffffffff Const adXactChaos = &H00000010 Const adXactReadUncommitted = &H00000100 Const adXactBrowse = &H00000100 Const adXactCursorStability = &H00001000 Const adXactReadCommitted = &H00001000 Const adXactRepeatableRead = &H00010000 Const adXactSerializable = &H00100000 Const adXactIsolated = &H00100000 '---- XactAttributeEnum Values ---- Const adXactPollAsync = 2 Const adXactPollSyncPhaseOne = 4 Const adXactCommitRetaining = &H00020000 Const adXactAbortRetaining = &H00040000 Const adXactAbortAsync = &H00080000 '---- FieldAttributeEnum Values ---- Const adFldBookmark = &H00000001 Const adFldMayDefer = &H00000002 Const adFldUpdatable = &H00000004 Const adFldUnknownUpdatable = &H00000008 Const adFldFixed = &H00000010 Const adFldIsNullable = &H00000020 Const adFldMayBeNull = &H00000040 Const adFldLong = &H00000080 Const adFldRowID = &H00000100 Const adFldRowVersion = &H00000200 Const adFldCacheDeferred = &H00001000 '---- EditModeEnum Values ---- Const adEditNone = &H0000 Const adEditInProgress = &H0001 Const adEditAdd = &H0002 '---- RecordStatusEnum Values ---- Const adRecOK = &H0000000 Const adRecNew = &H0000001 Const adRecModified = &H0000002 Const adRecDeleted = &H0000004 Const adRecUnmodified = &H0000008 Const adRecInvalid = &H0000010 Const adRecMultipleChanges = &H0000040 Const adRecPendingChanges = &H0000080 Const adRecCanceled = &H0000100 Const adRecCantRelease = &H0000400 Const adRecConcurrencyViolation = &H0000800 Const adRecIntegrityViolation = &H0001000 Const adRecMaxChangesExceeded = &H0002000 Const adRecObjectOpen = &H0004000 Const adRecOutOfMemory = &H0008000 Const adRecPermissionDenied = &H0010000 Const adRecSchemaViolation = &H0020000 Const adRecDBDeleted = &H0040000 '---- GetRowsOptionEnum Values ---- Const adGetRowsRest = -1 '---- PositionEnum Values ---- Const adPosUnknown = -1 Const adPosBOF = -2 Const adPosEOF = -3 '---- AffectEnum Values ---- Const adAffectCurrent = 1 Const adAffectGroup = 2 Const adAffectAll = 3 '---- FilterGroupEnum Values ---- Const adFilterNone = 0 Const adFilterPendingRecords = 1 Const adFilterAffectedRecords = 2 Const adFilterFetchedRecords = 3 '---- PropertyAttributesEnum Values ---- Const adPropNotSupported = &H0000 Const adPropRequired = &H0001 Const adPropOptional = &H0002 Const adPropRead = &H0200 Const adPropWrite = &H0400 '---- ErrorValueEnum Values ---- Const adErrInvalidArgument = &Hbb9 Const adErrNoCurrentRecord = &Hbcd Const adErrIllegalOperation = &Hc93 Const adErrInTransaction = &Hcae Const adErrFeatureNotAvailable = &Hcb3 Const adErrItemNotFound = &Hcc1 Const adErrObjectNotSet = &Hd5c Const adErrDataConversion = &Hd5d Const adErrObjectClosed = &He78 Const adErrObjectOpen = &He79 Const adErrProviderNotFound = &He7a Const adErrBoundToCommand = &He7b '---- ParameterAttributesEnum Values ---- Const adParamSigned = &H0010 Const adParamNullable = &H0040 Const adParamLong = &H0080 '---- ParameterDirectionEnum Values ---- Const adParamUnknown = &H0000 Const adParamInput = &H0001 Const adParamOutput = &H0002 Const adParamInputOutput = &H0003 Const adParamReturnValue = &H0004 '---- CommandTypeEnum Values ---- Const adCmdUnknown = 0 Const adCmdText = &H0001 Const adCmdTable = &H0002 Const adCmdStoredProc = &H0004 function ConvNull(cVar,cType) select case cType case "text" if len(cVar)=0 then ConvNull="" else ConvNull=cVar end if case "date" if isdate(cVar) then ConvNull="#" & cVar & "#" else ConvNull="Null" end if case "yesno" if len(cVar)=0 then ConvNull="No" else ConvNull=cVar end if case "number" if len(cVar)=0 then ConvNull=0 else if isnumeric(cVar) then ConvNull=csng(cVar) else ConvNull=0 end if end if end select end function function FixSingleQuote(cText) FixSingleQuote = Replace(cText, "'", "''") end function %> <% Set Connection = Server.CreateObject("ADODB.Connection") Connection.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=D:\Clients\vhosts\philadelphiastpatsparade.com\httpdocs\database\stpats.mdb;" SQLStmt = "select photos.* " SQLStmt = SQLStmt & "FROM photos " SQLStmt = SQLStmt & "WHERE theyear = '2009' " Set RS = Connection.Execute(SQLStmt) %> St. Patrick's Day Parade--Photos
Watch the Philadelphia St. Patrick's Parade LIVE Sunday, March 11 on The CWPhilly57 - from 1:00 PM to 4:00 PM.
The Parade will also stream live on the station's website www.cbsphilly.com. An encore of the parade will air on
Saturday March 17 on CBS3 - from 9:00 AM to Noon and again on Sunday March 18 on The CWPhilly57 - from Noon to 3:00 PM.
   Home Page
PARADE INFORMATION
   Mass Information
   General Information
   Parade Themes
   Suggest a Theme
   Description of Awards
   Award Winners
   Photo Gallery
   History
PARADE APPLICATION
   New Participants
   Returning Participants
   Parade Regulations
   Privacy Statement
   Judging Criteria
MARSHAL INFORMATION
   Meeting Dates & Duties
   Marshal Assignments
   Marshals Alpha
MAPS
   Parade Route
   Staging Area Map
   Bus Pickup
   Performing Area
PEOPLE
   Board Members
   Emeritus/Deceased
   Past Presidents
   Grand Marshals
   Parade Directors
   Parade Chaplains
   Ring of Honor
CALENDAR
   Meeting Dates
   Calendar of Events
   Golf Outing
   Awards Ceremony
OTHER INFORMATION
   Parade Line of March
   Dancing Group's Info
   2010 Sponsors
   2009 Sponsors
   Sponsorsship
   Links
   Contact Us

 
2009 PARADE PHOTOGRAPHS

Click the "Start" button below, or use the arrows or dropdown

       
" %>

More Pictures

PDF slideshow of pictures courtesy of Kerry O'Connor

Set of pictures and stories, courtesy of Irish Philadelphia
As usual, Irish Philadelphia has hundreds of photos and video. Photos by Jeff Meade and Denise Foley; video by Jeff Meade.

Over 100 great photos from the parade, courtesy of NeoCon
http://picasaweb.google.com/rgc1946/StPattySDayParade2009?feat=directlink

Even more photos courtesy of Irish Philadelphia http://www.irishphiladelphia.com/stpatsparade200931609
http://www.irishphiladelphia.com/preparadeceremonies31209
http://www.irishphiladelphia.com/springfieldparadebenefit31009
http://www.irishphiladelphia.com/finnigansfundraiser
http://www.irishphiladelphia.com/cbsparty
http://www.irishphiladelphia.com/paraderoutechanged21309
http://www.irishphiladelphia.com/jimcoyne2009
http://www.irishphiladelphia.com/stpatsparadeshortfall09

Past Photos
2008 Parade Photos
2007 Parade Photos
2006 Parade Photos
2005 Parade Photos
2004 Parade Photos
Back To Top