Using the ADO Control 1. Connect to the table a. Set the ConnectionString to connect to the database b. Set the RecordSource to connect to the table in the database 2. Bind the form controls to the fields from the table a. Set the DataSource for the control to the ADO control b. Set the DataField for the control to the field Structured Query Language (SQL) Getting Information from a database An SQL Statement uses clauses SELECT fldSeat, fldName 'specify fields FROM tblPatron 'specify tables WHERE fldName Like "C*" 'specify criteria ORDER BY fldName