How To Install wxsqlite3 on Fedora 34

wxsqlite3 is C++ wrapper around the SQLite 3.x database C++ wrapper around the SQLite 3.x database

Introduction

In this tutorial we learn how to install wxsqlite3 on Fedora 34.

What is wxsqlite3

wxSQLite3 is a C++ wrapper around the public domain SQLite 3.x database and is specifically designed for use in programs based on the wxWidgets library. wxSQLite3 does not try to hide the underlying database, in contrary almost all special features of the current SQLite3 version 3.6.22 are supported, like for example the creation of user defined scalar or aggregate functions. Since SQLite stores strings in UTF-8 encoding, the wxSQLite3 methods provide automatic conversion between wxStrings and UTF-8 strings. This works best for the Unicode builds of wxWidgets. In ANSI builds the current locale conversion object (wxConvCurrent) is used for conversion to/from UTF-8. Special care has to be taken if external administration tools are used to modify the database contents, since not all of these tools operate in Unicode resp. UTF-8 mode. wxSQLite3 includes an optional extension for SQLite supporting key based database file encryption using 128 bit AES encryption. Starting with version 1.9.6 of wxSQLite3 the encryption extension is compatible with the SQLite amalgamation source. Experimental support for 256 bit AES encryption has been added in version 1.9.8. wxsqlite3 4.5.1 3.fc34 x86_64 796 k wxsqlite3-4.5.1-3.fc34.src.rpm fedora C++ wrapper around the SQLite 3.x database https wxWidgets wxSQLite3 is a C++ wrapper around the public domain SQLite 3.x database and is specifically designed for use in programs based on the wxWidgets library. wxSQLite3 does not try to hide the underlying database, in contrary almost all special features of the current SQLite3 version 3.6.22 are supported, like for example the creation of user defined scalar or aggregate functions. Since SQLite stores strings in UTF-8 encoding, the wxSQLite3 methods provide automatic conversion between wxStrings and UTF-8 strings. This works best for the Unicode builds of wxWidgets. In ANSI builds the current locale conversion object (wxConvCurrent) is used for conversion to/from UTF-8. Special care has to be taken if external administration tools are used to modify the database contents, since not all of these tools operate in Unicode resp. UTF-8 mode. wxSQLite3 includes an optional extension for SQLite supporting key based database file encryption using 128 bit AES encryption. Starting with version 1.9.6 of wxSQLite3 the encryption extension is compatible with the SQLite amalgamation source. Experimental support for 256 bit AES encryption has been added in version 1.9.8.

We can use yum or dnf to install wxsqlite3 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install wxsqlite3.

Install wxsqlite3 on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install wxsqlite3 using dnf by running the following command:

sudo dnf -y install wxsqlite3

Install wxsqlite3 on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install wxsqlite3 using yum by running the following command:

sudo yum -y install wxsqlite3

How To Uninstall wxsqlite3 on Fedora 34

To uninstall only the wxsqlite3 package we can use the following command:

sudo dnf remove wxsqlite3

wxsqlite3 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/83
/usr/lib/.build-id/83/957e89949c266571865e47fff2c4f6ba962765
/usr/lib64/libwxcode_gtk3u_wxsqlite3-3.0.so.0
/usr/lib64/libwxcode_gtk3u_wxsqlite3-3.0.so.0.0.0
/usr/share/doc/wxsqlite3
/usr/share/doc/wxsqlite3/readme.md
/usr/share/licenses/wxsqlite3
/usr/share/licenses/wxsqlite3/LICENCE.txt
/usr/lib/.build-id
/usr/lib/.build-id/97
/usr/lib/.build-id/97/64920b8ee830480ee3d55034191157d0a825ef
/usr/lib/libwxcode_gtk3u_wxsqlite3-3.0.so.0
/usr/lib/libwxcode_gtk3u_wxsqlite3-3.0.so.0.0.0
/usr/share/doc/wxsqlite3
/usr/share/doc/wxsqlite3/readme.md
/usr/share/licenses/wxsqlite3
/usr/share/licenses/wxsqlite3/LICENCE.txt

References

Summary

In this tutorial we learn how to install wxsqlite3 on Fedora 34 using yum and dnf.