Grails MariaDB Dynamically Created

I have authored a c++ application that is useful in the creation of new Grails projects supporting the MariaDB relational database management system (RDBMS).  The c++ program fulfills all the perfunctory requirements to utilize MariaDB via Grails. Create the Grails Project – This is accomplished by allowing the user to select a target for the […]

MariaDB Grails

MariaDB is a popular open-source relational database management system that is a fork of the MySQL database. Grails, on the other hand, is a web application framework for the Java platform. It is based on the Groovy programming language and uses the Model-View-Controller (MVC) architecture. To use MariaDB with Grails, you need to set up […]

String Array To File

The code below allows the contents of a collection of strings to be written to a text file. [codesyntax lang=”cpp”] void grailsGenFrame::saveBuild() { out.Open(“/home/archman/workspace/grails/grailsSkel/build.gradle2”); for (size_t i=0; i < str.Count(); i++) { out.AddLine(str[i]); } out.Write(); out.Close(); } [/codesyntax] Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.

Back Up Primary Directories

We begin by identifying the source partition. [codesyntax lang=”bash”] sudo fdisk -l /dev/sda Disk /dev/sda: 111.8 GiB, 120040980480 bytes, 234455040 sectors Disk model: SanDisk SSD PLUS Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: gpt Disk […]

COBOL Coding Strategy

Two applications should be installed for further utilization of this tutorial .  Install GnuCOBOL by clicking here.  Install OpenCobolIDE by clicking here. The primary or main COBOL program should consist of the call verb only.  That is to say only subprogram references should be invoked from the mainline.  The mainline will consists of only calling […]

Compile c++ Source Code Without IDE

When c++ source code needs to be compiled and objects need to be made executable this application accomplished the desired goal. To initiate the process a select directory dialog appears which allows the programmer to point to the location of the c++ source code. The “obj” and “bin” subdirectories are created and populated with the […]

BCS wxWidgets Modal Dialog

To create a wxWidgets modal dialog some source code must be added to your existing wxWidget application. The next section of code will establish the class and the reference to the modal dialog. The final section of code shows how to invoke the modal dialog. Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored […]