Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
Database[LoadConnection] - load a saved Connection
Calling Sequence
LoadConnection( name, opts )
Parameters
name
-
(optional) string; the identifier for the connection to load
opts
(optional) equation(s) of the form option=value where option is one of filename or password
Description
LoadConnection re-establishes a connection that was saved using the Save command or Database Connection Maplet application.
Each connection that is saved using the Save command has an associated identifier. This identifier is used to distinguish between the connections saved in a file. If specified, name is used as the identifier. Otherwise, "default" is used as the identifier.
The opts argument can contain one or more of the following equations.
filename = string
The filename option specifies the file from which this connection is loaded. When no filename is given, connections are loaded from $HOME/maple/toolbox/Database/data/default.con, where $HOME is the value returned by kernelopts( homedir ).
password = string or one of the literal symbols none or hidden
The password option is used to specify the password to use when re-establishing the connection to the database. If a password option is given, it overrides a password that is saved in the file. If no password is saved in the file and a password is required to connect to the database, then the password option must be given. If a string is given, that string is used as the password. If hidden is given, then a Maplet application opens to allow you to enter a password without it appearing in the worksheet. The default value is none.
Along with saving the parameters necessary to re-establish the connection, the Save command also stores the connection's current settings, as returned by the GetOptions command. When a connection is loaded using the LoadConnection command, these settings are also restored.
LoadConnection returns an expression sequence of two modules. The first module is the Database[Driver] module you used to open the connection. The second is the Database[Connection] module representing the opened connection.
Examples
Create a connection.
Save the connection to disk using the default file and the default identifier.
Close the connection.
Re-establish the connection saved as default.
Modify this connection's options.
Save using a different identifier and specify the password.
Re-establish the "ac1" connection.
Check this connection's options.
See Also
Database, Database[Connection], Database[Connection][GetOptions], Database[Connection][Save], Database[Connection][SetOptions], Database[Driver], Database[LoadDriver], Database[usage]
Download Help Document