Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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