Database
ConnectionBuilder
launch Connection Builder Assistant
Calling Sequence
Parameters
Description
Examples
ConnectionBuilder( opts )
Database( opts )
opts
-
(optional) equation of the form filename=file
The ConnectionBuilder command opens a Assistant to help you create a database connection. You can enter driver and connection parameters in the interface. The parameters correspond to the arguments you can specify for the LoadDriver and OpenConnection commands. The Assistant opens a connection to the specified database.
You can also use the Database package name as a top-level command to launch the Connection Builder Assistant.
If a connection is successfully established by the Assistant, it returns an expression sequence of length 2. The first element is the driver module and the second is the connection module.
To facilitate specifying the files required for the connection, the Assistant allows you to search the file system.
The Connection Builder Assistant can also load and save connection settings to files. These files are compatible with those used by the Save and LoadConnection commands.
It is recommended that you save connection settings. This allows you to easily re-establish connections.
Each connection stored in a file is associated with an identifier. This identifier allows multiple connections to be stored in a single file. To specify the identifier for connection settings, use the Connection combination box.
The ConnectionBuilder command accepts the optional filename=file equation, which allows you to specify the connection file (as a string) to use when opening the Assistant. If not specified, the Assistant opens $HOME/maple/toolbox/Database/data/default.con, where $HOME is the value returned by kernelopts( homedir ). If this file does not exist, no file is loaded.
If a file is successfully loaded, the connection with the identifier default is displayed by default. If no connection has the identifier default, the Assistant displays the connection properties for the connection with the alphabetically first identifier.
For more detailed information, see the Help menu in the Connection Builder Assistant.
The Connection Builder Assistant can be opened either by using the top-level Database command, as shown below, or by calling Database:-ConnectionBuilder.
driver,conn≔Database⁡:
result≔conn:-ExecuteQuery⁡SELECT * FROM animals
result≔moduleoptionunload=Close;localhandle;exportNext,Previous,Last,First,GetRowNumber,GotoRow,GetRowCount,InsertRow,DeleteRow,UpdateRow,GetData,UpdateData,GetType,GetName,GetColumnCount,SetOptions,GetOptions,Close,ToMaple;end module
Show the results.
whiler:-Next⁡dor:-GetData⁡id,r:-GetData⁡name,r:-GetData⁡number,r:-GetData⁡massenddo
1,fish,100,0.0100000000000000002
2,dog,10,20.5000000000000000
3,cat,10,5.50000000000000000
4,rat,50,0.500000000000000000
5,horse,3,400.300000000000011
6,snake,1,7.75000000000000000
7,lizard,5,0.100000000000000004
8,parrot,20,2.
9,pig,4,10.
10,hamster,30,0.200000000000000012
Perform a more complex SELECT and convert the output to a Maple table.
c:-ExecuteQuery⁡SELECT id, name FROM animals WHERE mass > 5,output=table
table⁡2,id=3,4,id=6,3,name=horse,1,id=2,5,id=8,4,name=snake,3,id=5,2,name=cat,1,name=dog,5,name=pig
Perform another SELECT and convert the output to a Maple Array.
c:-ExecuteQuery⁡SELECT name, mass FROM animals WHERE number BETWEEN 10 and 50,output=Array
dog20.5000000000000000cat5.50000000000000000rat0.500000000000000000parrot2.hamster0.200000000000000012
See Also
Database[Connection][ExecuteQuery]
Database[Connection][Save]
Database[Driver]
Database[Driver][OpenConnection]
Database[LoadConnection]
Database[LoadDriver]
Database[usage]
Download Help Document