MariaDB Driver

This installs a MariaDB driver. [codesyntax lang=”bash”] sudo make install [sudo] password for archman: [ 2%] Built target dialog [ 28%] Built target client_ed25519 [ 30%] Built target caching_sha2_password [ 31%] Built target sha256_password [ 34%] Built target auth_gssapi_client [ 35%] Built target mysql_clear_password [ 37%] Built target zstd [ 38%] Built target remote_io [ […]

MariaDB

MariaDB is a popular open-source relational database management system (RDBMS) that is designed to be a drop-in replacement for the MySQL database system. It was developed as a community-driven fork of MySQL after concerns arose about the acquisition of MySQL by Oracle Corporation. MariaDB is known for its speed, scalability, and robustness. It offers features […]

Grails MariaDB In Action

To initiate the compile step issue the following command. [codesyntax lang=”bash”] grails compile [/codesyntax] To create the domain class issue the following command. [codesyntax lang=”bash”] grails create-domain-class ttd [/codesyntax] Navigate to the following domain and modify it to reflect the following. [codesyntax lang=”cpp”] package demo01 class Ttd { String name Date startDate Date endDate Boolean […]