sudo apt install cpanminus
-#Install SQLite
-https://www.sqlite.org/download.html
-
+# Install SQLite
+sudo cpan DBD::SQLite;
+# or download latest from: https://www.sqlite.org/download.html
+# Optional but recommended install a ProgresSQL database server and driver see: Installation_ProgresSQL.txt
## Development Environment Perl Install
# Developer? Install VSCode, not from flatpack. Use Microsoft site -> https://code.visualstudio.com/
-Requirments: G++ and gcc compilers, and Gcc-4.8 GNU Compiler
+Requirements: G++ and gcc compilers, and Gcc-4.8 GNU Compiler
# Install Perl, properly, don't use the distro provided perl interpreter (might be outdated or has missing modules).
##
## Install required libpq-dev to compile test perl driver, later.
sudo apt install libpq-dev
-##Install perl driver.
+## Install perl driver.
sudo cpan DBD::Pg;
# Default database driver prefix, is SQLite.
Note Remove -> '!' prefix to tag name, to enable, set,
and override any previously set from now on, top to end of file approach.
-
-<<!DBI_SOURCE<DBI:SQLite:>>>
+# SQLite DB driver.
+<<DBI_SOURCE<DBI:SQLite:>>>
# ProgresSQL DB driver.
-<<DBI_SOURCE<DBI:Pg:host=localhost;>>>
+<<!DBI_SOURCE<DBI:Pg:host=localhost;>>>
+
# LOG actual variable size limit, - 1024 default, 128 minimum value.
<<DBI_LOG_VAR_SIZE<8024>>>