Contact Us
Easy Method Driving School Headquarters
8654 Baltimore National Pike
Ellicott City, MD 21043-3337
Phone:
Maryland
Howard County 410-461-9090
Montgomery County 301-929-7900
Fredrick County 301-293-2300
Virginia
Fredericksburg 540-446-5741
Richmond 804-545-3918
Washington the District of Columbia
202-536-5152
Fax:
410-461-1079 or 410-988-2320
<%
Set cnnDB = Server.CreateObject("ADODB.Connection")
cnnDB.Open Application("ConnectionString")
Set rs= Server.CreateObject("ADODB.Recordset")
sqlCommand = "select * from Pricing"
With rs
.ActiveConnection = cnnDB 'previously opened connection
.CursorLocation = 3 'adUseClient
.CursorType = 0 'adOpenForwardOnly
.LockType = 1 'adLockReadOnly
.Source = SQLCommand 'SQL String/Command
.Open
.ActiveConnection = Nothing
End With
cnnDB.Close
Set cnnDB = Nothing
%>
|