Download Monet Driver
- Download Monet Driverpack
- Download Monet Driver Printer
- Download Monet Drivers
- Download Monet Drivers License
Trusted Windows (PC) download MonetDB ODBC Driver 11.19.9. Virus-free and 100% clean download. Get MonetDB ODBC Driver alternative downloads. Download Monect PC Remote for Windows 10 for Windows to control your PC with a phone via Wi-Fi or Bluetooth. Monect PC Remote for Windows 10 has had 0 updates within the past 6 months.
MonetDB ODBC Driver
Short for Open DataBase Connectivity, a standard database access method developed by the SQL Access group in 1992. The goal of ODBC is to make it possible to access any data from any application, regardless of which database management system (DBMS) is handling the data. ODBC manages this by inserting a middle layer, called a database driver, between an application and the DBMS. The purpose of this layer is to translate the application's data queries into commands that the DBMS understands. For this to work, both the application and the DBMS must be ODBC-compliant – that is, the application must be capable of issuing ODBC commands and the DBMS must be capable of responding to them.
The ODBC driver for MonetDB is included in the Windows installer and Linux RPMs. The source can be found in the SQL CVS tree.
To help you setup your system to use the ODBC driver with MonetDB, two how-tos are available, one for Windows users and one for Linux/UNIX users.
Microsoft Excel demo
A little demo showing how to import data from a MonetDB server into Microsoft Excel.
Using Excel with the MonetDB ODBC Driver
Start up the MonetDB SQL Server and Excel.
In Excel, select from the drop down menu, first Data, then Get External Data, and finally New Database Query...
If MonetDB was installed correctly, there should be an entry MonetDB in the dialog box that opens. Select it and click on OK.
In the wizard that opens, scroll down in the list on the left hand side and select voyages. Then click on the button labeled > and then on Next >.
In the next page of the wizard, click on Next >.
In the next page of the wizard, click on Next >.
In the final page of the wizard, click on Finish.
A new dialog window opens. Click on OK to insert the data into the current Excel worksheet.
That's all.
Installing the MonetDB ODBC Driver for unixODBC
Configuring the MonetDB Driver
As Superuser, start the unixODBC configuration program ODBCConfig and select the Drivers tab.
On this tab, click on the button labeled Add... and fill in the fields as follows.
Name
- MonetDB
Description
- ODBC Driver for MonetDB SQL Server
Driver
- <path-to-MonetDB>/lib(64)/libMonetODBC.so
Setup
- <path-to-MonetDB>/lib(64)/libMonetODBCs.so
Download Monet Driverpack
Don't change the other fields. When done, click on the check mark in the top left corner of the window. The first window should now contain an entry for MonetDB. Click on OK
Configuring a Data Source
Now as normal user start ODBCConfig again.
On the User DSN tab click on the Add... button. A new window pops up in which you have to select the ODBC driver. Click on the entry for MonetDB and click on OK.
A new window pops up. Fill in the fields as follows.
Name
- MonetDB
Description
- Default MonetDB Data Source
Host
- localhost
Port
- 50000
User
- monetdb
Password
- monetdb
Don't change the other fields. When done, click on the check mark in the top left corner of the window. The first window should now contain an entry for MonetDB. Click on OK
MonetDB JDBC Driver
The most obvious way to connect to a data source using the Java programming language is by making use of the JDBC API. MonetDB supplies a 100% pure Java JDBC driver (type 4) which allows to connect and work with a MonetDB database from a Java program without any other libraries needed.
This document gives a short description how to use the MonetDB JDBC driver in Java applications. Familiarity with the Java JDBC API is required to fully understand this document. Please note that you can find the complete JDBC API on Oracle's web site http://docs.oracle.com/javase/7/docs/technotes/guides/jdbc/index.html.
The latest release of the MonetDB JDBC driver has implemented most of the essential JDBC API classes and methods. If you make extensive use of JDBC API and semantics and rely on its features, please report any missing functionality on our bugzilla.
In order to use the MonetDB JDBC driver in Java applications you need (of course) a running MonetDB/SQL server instance (mserver5 process running), preferably via monetdbd
.
Getting the JDBC driver Jar
The easiest way to acquire the JDBC driver is to download it from our MonetDB Java Download Area. You will find a jar file called monetdb-jdbc-X.Y.jre7.jar
where X and Y are major and minor version numbers. The other two listed jar files (jdbcclient.jre7.jar and monetdb-mcl-*.jre7.jar) are optional utility jars. jdbcclient.jre7.jar contains a java command line program similar (but not equal) to mclient, see below.
Compiling the driver (using ant, optional)
If you prefer to build the driver yourself, make sure you acquire the MonetDB Java repository, e.g. as part of the source downloads. The Java sources are built using Apache's Ant tool and a make file. Simply issuing the command ant distjdbc should be sufficient to build the driver jar-archive in the subdirectory jars. See the ant web site for more documentation on the ant build-tool: http://ant.apache.org/. The Java sources currently require at least a Java 8 compatible compiler.
Using the JDBC driver in your Java programs
To use the MonetDB JDBC driver, the monetdb-jdbc-X.Y.jre7.jar
jar-archive has to be in the Java classpath. Make sure this is actually the case. Note: as of Jul2015 release (monetdb-jdbc-2.17.jar
) the MonetDB JDBC Driver only works with Java 7 (or higher) JVMs.
Using the MonetDB JDBC driver in your Java program:
Download Monet Driver Printer
The MonetDB JDBC Connection URL string format passed to the 'getConnection()'method is defined as
where elements between '<' and '>' are required and elements between '[' and ']' are optional.
Download Monet Drivers
Following optional connection properties are allowed:
A sample Java JDBC program
Note: it is no longer required (or recommended) to include code line:
Download Monet Drivers License
as the MonetDriver class registers itself with the JDBC DriverManager automatically when the monetdb-jdbc-X.Y.jre7.jar
file is loaded.
Note: The JdbcClient program is an example program which uses the JDBC API. See JdbcClient for more information.