Python Tkinter GUI with SQLite Tutorial

In this tutorial we will explore how we can use Tkinter GUI alongside the SQLite Database to store and access data required by our application. Permanent data storage is required in most applications, especially those which deal with data. A very popular option for data storage is “text files”, which is almost always used instead … Read more

JavaScript SQLite3 Tutorial for Beginners (Node.js)

In this tutorial we will explore how to set up, install and use the SQLite3 Database in JavaScript. What is SQLite? SQLite is a lightweight, serverless, and embedded relational database management system (RDBMS) that is widely used, especially in applications with moderate data storage needs. SQLite offers several benefits that make it a popular choice … Read more