Download and configure JDBC driver

Download JDBC driver and configure java class path required for Database Toolbox.
844 Descargas
Actualizado 6 oct 2017

Ver licencia

[status,message] = configureJDBCDriver(vendor)
downloads JDBC driver for the given vendor in MATLAB's preferences directory and configures the java class path. status indicates if the operation was a SUCCESS, ERROR or NO ACTION. message is associated with the status returned, which is an optional argument.

[status,message] = configureJDBCDriver(vendor,Name,Value)

downloads and configures JDBC driver using Name-Value arguments.

Supported Vendors:
---------------------------
- 'MySQL'
- 'PostgreSQL'
- 'SQLite'
- 'MariaDB'
- 'Amazon Redshift'
- 'Amazon Aurora'

Name-Value arguments:
--------------------------------
DownloadOnly - Default value is false. If set to true, JDBC driver only downloaded. Java class path is not configured.
DownloadLocation - By default, JDBC driver is downloaded in the MATLAB's preferences directory. You may provide a different
location on your machine where you would like to download the JDBC driver.
SuppressMsgBox - Default value is false. If set to true, message box is suppressed from being displayed.

Example:
--------
status = configureJDBCDriver('MySQL')
downloads MySQL JDBC driver in MATLAB's preferences directory and configures javaclasspath.txt to add the JDBC driver to
static java class path.

status = configureJDBCDriver('MySQL','DownloadOnly',true)
downloads MySQL JDBC driver in MATLAB's preferences directory.

status = configureJDBCDriver('MySQL','DownloadOnly',true,'DownloadLocation','C:\work')
downloads MySQL JDBC driver in C:\work directory.

status = configureJDBCDriver('MySQL','DownloadLocation','C:\work')
downloads MySQL JDBC driver in C:\work direcotry and configures javaclasspath.txt to add the JDBC driver to static java class
path.

status = configureJDBCDriver('MySQL','SuppressMsgBox',true)
downloads MySQL JDBC driver in MATLAB's preferences directory and configures javaclasspath.txt to add the JDBC driver to
static java class path. Suppresses the message box from being displayed

This method is supported in MATLAB R2017a and later.

Citar como

MathWorks Computational Finance Team (2026). Download and configure JDBC driver (https://la.mathworks.com/matlabcentral/fileexchange/64463-download-and-configure-jdbc-driver), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2017a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Database Toolbox en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0