General
|
| Q: |
What version of Mathematica is required? |
| |
Mathematica 5.1 is required to use DatabaseLink.
|
| |
|
| Q: |
What platforms support DatabaseLink? |
| |
DatabaseLink is supported on all platforms
that J/Link supports.
|
| |
|
| Q: |
Who should use DatabaseLink? |
| |
DatabaseLink is for all Mathematica users and database users.
Mathematica users unfamiliar with databases will find the
easy-to-use Mathematica functions, the included database
engine, and the Database Explorer's graphical user interface for
executing queries particularly useful. Experienced database users will
appreciate features such as the SQL command interface, transactions,
and rich datatype support.
|
| |
|
| Q: |
What is Database Explorer? |
| |
Database Explorer is a graphical user interface for querying a
database with DatabaseLink. It is implemented using GUIKit.
|
| |
|
| Q: |
Whom should I contact if I have a question or a comment? |
| |
If you have a question or a comment, you should send email to databaselink@wolfram.com.
|
| |
|
| |
|
Technology
|
| Q: |
What is J/Link? |
| |
J/Link is a
built-in Mathematica toolkit that integrates with Java. It
lets you call Java from Mathematica in a completely transparent
way.
|
| |
|
| Q: |
How does DatabaseLink use J/Link? |
| |
DatabaseLink uses J/Link to make JDBC calls to a database.
|
| |
|
| Q: |
Is knowledge of Java required to use DatabaseLink? |
| |
No, knowledge of Java is not required. The DatabaseLink
interface is completely Java independent. The user may see
Java-related messages that are generally system errors rather than
user errors.
|
| |
|
| Q: |
What is JDBC? |
| |
Java Database Connectivity (JDBC) is an API that provides connectivity
to a wide range of SQL databases and access to other tabular data
sources, such as spreadsheets or flat files.
|
| |
|
| Q: |
How does DatabaseLink use JDBC? |
| |
DatabaseLink uses JDBC to connect and communicate with database systems.
|
| |
|
| Q: |
What databases are supported by DatabaseLink? |
| |
DatabaseLink connects to databases using JDBC. Therefore,
available JDBC drivers determine which databases are supported.
|
| |
|
| Q: |
Where can I find a list of database JDBC drivers? |
| |
A list of drivers can be found here.
|
| |
|
| Q: |
What is SQL? |
| |
SQL is an industry-standard language for creating, updating, and querying
relational database management systems.
|