Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Connection:-GetOptions - get the current value of Connection module options
Calling Sequence
connection:-GetOptions( opts )
Parameters
connection
-
Connection module
opts
(optional) name of the option to get, one of readonly, autocommit or isolation
Description
GetOptions gets the current values of connection's options.
GetOptions can query all the options that are set by SetOptions.
readonly= true or false
The readonly argument informs the database that it can enable optimizations associated with a read-only connection. The effect that this has depends on the database. Setting readonly=true may not prevent the execution of updates. By default, connections are not opened read-only.
autocommit = true or false
The autocommit optional argument controls if updates are automatically committed on execution. If autocommit is true, then updates are automatically committed to the database. Otherwise, transactions will be used and updates will need to be committed before they are reflected in the database (see Commit and Rollback for more information). By default, autocommit is false.
isolation= uncommittedread, committedread, repeatableread, or serializable
The isolation argument determines how isolated transactions using this connection are from transactions occurring at the same time.
- At serializable isolation, dirty reads (reading uncommitted data from parallel transactions), non-repeatable reads (reading the same row multiple times producing different results due to parallel updates), and phantom reads (WHERE conditions matching different numbers of rows due to parallel updates) are all prevented.
- At repeatableread isolation, dirty reads and non-repeatable reads are prevented.
- At committedread isolation, only dirty reads are prevented.
- At uncommittedread isolation, dirty reads are also allowed.
The default isolation is database specific. The isolation option can only be set at the beginning of a transaction, before any SQL statements have been executed.
Calling GetOptions with no arguments returns the current values of all the arguments that GetOptions can query.
Examples
See Also
Database, Database[Connection], Database[Connection][SetOptions], Database[Driver], Database[Driver][OpenConnection], Database[usage]
Download Help Document