FORGEBOX Enterprise 🚀 - Take your ColdFusion (CFML) Development to Modern Times! Learn More...

Lucee MariaDB extension

v3.3.1 Lucee Extensions

Lucee MariaDB Extension

This extension installs the MariaDB Connector/J Type 4 JDBC driver for creating MariaDB data sources in Lucee Server. It is an alternative to the generic MySQL driver.

Installation

via Forgebox

  1. In your Lucee Administrator, go to the Extension > Providers page and add https://forgebox.io as a New Extension Provider if not already present
  2. Go to Extension > Applications and look for MariaDB in the "Not installed" section
  3. Click the extension and install

Manual

  1. Download the the lucee-mariadb.lex file
  2. In your Lucee Administrator, go to the Extension > Applications page
  3. Under "Upload new extension", select the lex file and click "Upload"

Usage

Once installed you can either create datasources in the Lucee Administrator using the newly added "MariaDB" type, or you can define them in your Application.cfc as follows:

this.datasource = {
	class: "org.mariadb.jdbc.Driver"
	,connectionString: "jdbc:mariadb: //[hostname]:[port]/[database]?<parameter>=<value>"
	,username: [username]
	,password: [password]
	//other options if required
};

More details on defining Lucee datasources

Full driver documentation

Migration from the MySQL driver

Note that when inserting records into tables with an auto-increment primary key, the MySQL driver returns the new primary key value in two variables in the query result:

GENERATED_KEY
generatedKey

However the MariaDB driver returns the value in the following variables:

generatedKey
insert_id

Before switching drivers, you should therefore check that your code is using generatedKey and not GENERATED_KEY.

Credits

Inspiration came from Bruce Kirkpatrick.

  • Install String
    $ install F2FA5DB2-0C27-499C-B1171D2D812FDAF9
  • JVM Argument
    -Dlucee-extensions=F2FA5DB2-0C27-499C-B1171D2D812FDAF9
  • No collaborators yet.
         
    • {{ getFullDate("2019-05-29T06:17:06Z") }}
    • {{ getFullDate("2023-11-30T12:04:43Z") }}
    • 2,202
    • 37,928