Notes
Section
|
Main
Text
|
Module 1.0 |
Recordset
Object.
1.
Cursor - Points to the current position in a recordset--just one record
at any given time. |
Module
1.1 |
ADO
Constants. 1. For example, these constants are used to define certain features of the recordset:
Const adOpenForwardOnly = 0 Const adLockReadOnly = 1 Const
adCmdTable = 2 |
Module 1.2 |
Recordset Object
Characteristics. |
Module
1.3 |
The Recordset Object in
Use.
4. Finding Records - A method that does a full table scan to move the cursor to a record that fits a particular description. It has the following syntax.
objRecordset.Find Criteria, SkipRecords, SearchDirection, Start
5. Filtering Records - Identify all records in a recordset that meet a certain criteria.
6. Fields Collection - Contains an entry for each Field (column) in the current record, and you may iterate through each field in the fieldset.
7. GetRows Method -
Returns a multi-dimensional array having a field's data from a specific number
of records in the recordset. It has three optional parameters: Rows, Start
and Fields. |
Module
1.4 |
Exercise 3. 1. Finish reading Chapter Thirteen, Using Recordsets, in the course textbook. Please read, outline and paraphrase
the entire chapter. Work the Try It Out projects for data
access with your own code if possible. 2. Please define all the new vocabulary
terms from the paragraphs in the textbook, from the textbook's glossary and
from online resources. 3. Discuss the correct answers to this week’s
quiz (shown below) on the Week 3 Student Discussion Board. 4. Try out
the class project links which will not be graded. |
Module 1.5 |
Quiz 3.
|