• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back
How would you create a database manager object named MGR?
Dim MGR as _ AFDatabaseLib.CBAccessManager

Set MGR = New _
AFDatabaseLib.CBAccessManager
What object of the Appforge Database Object Model is creatable with the New command?
IDBAccessManager
What object of the Appforge Database Object Model represents a connection to a recordscource and contains methods to execute SQL statements and open recordsets?
IConnection
What object of the Appforge Database Object Model is creatable with the New command?
IDBAccessManager
What object of the Appforge Database Object Model allows the programmer to create a open connection to a particular data scource?
IDBAccessManager
What are the objects of the Appforge database model?
IDBAAcessManager
IConnection
IReadableRecordset
IUpdatableRecorset
IWritableRecordset
What are the steps common for working with a database using the Appforge Database object model?
1) Create a database access manager object
2)Open a connection from the access manager
3)Execute a SQL statement or
4)Open a readonly recordset
5)Open a writable recordset
5)Move through a opened recordset retrieving and/or modifying data