Aksh Bansalsaberx.hashnode.dev·Dec 5, 2023Introduction to SQLiteMost people think SQLite is just a toy database and does not have much use in the real world. But it can be very powerful when used correctly. In this article, I will try to explain what SQLite is, how it is different from other traditional databases...Discuss·1 like·91 readsDatabases
Belghith Omaromar-b.hashnode.dev·Nov 25, 2023SQLite: The Unsung Hero of DatabasesIntroduction In the database universe, there’s a silent warrior that often goes unnoticed, overshadowed by its more celebrated counterparts like MySQL and PostgreSQL. This warrior is SQLite - a lightweight, yet powerful database engine. Today, we're ...DiscussDatabases
Deon SlabbertProbecomingaprogrammer.blog·Nov 24, 2023Introduction to Database DesignWelcome to our first post in the Database Design Fundamentals course, where you will learn what a database is and how to design one. But, before we can answer the obvious question, "What is a database?", we first have to answer the questions, "What i...DiscussDatabase Design Fundamentalsdatabase design
Marco Bambiniblog.sqlitecloud.io·Nov 15, 2023The cost of linearizable reads in distributed databasesIn the intricate world of distributed databases, achieving linearizable reads involves ensuring that when data is read from the database, users receive the most recent and accurate version. This concept is akin to having a single, cohesive copy of da...Discuss·75 readsSQL
Sudi Davidsudi.dev·Nov 14, 2023Adding Entity Framework Core and SQLiteBuilding upon our introduction to Minimal APIs, let's proceed to the next level by incorporating a data source to store and retrieve recipe information. We'll be using SQLite as our database and Entity Framework Core to interact with it. To get start...Discuss·1 likeefcore
Shahariar Rahmanshahariarshifat2002.hashnode.dev·Nov 13, 2023DatabasesWhich is best Database for web applications In 2022? MySQL MY SQL is clearly one of the most popular and oldest open-source SQL databases. It's a client/server-side system that consists of a multi-threaded SQL server. PostgreSQL PostgreSQL is an open...DiscussDatabases
André KönigforAndré Königandrekoenig.hashnode.dev·Nov 8, 2023Hybrid SQLiteWouldn't it be amazing if retrieving data from a database were instantaneous? So much so that it felt as though the actual data was directly embedded into the user interface? You might wonder, why the focus is on reading data. Web-based systems are p...Discuss·63 readsSQLite
Brandon StrittmatterforOuterbaseouterbase.com·Nov 3, 2023No Database? No Problem!tl;dr Outerbase introduces instant SQLite database creation, offering a seamless experience for users looking to quickly prototype or experiment with their data. From easy updating structure to in-line editing and EZQL capabilities, crafting a databa...DiscussSQLite
Fabrice Sangwafabricesangwa.hashnode.dev·Oct 31, 2023Les Bases De Données En PythonPRINCIPE GENERAL DES BASES DE DONNEES Les bases de données jouent un rôle essentiel dans la gestion, le stockage et la récupération de données dans le domaine de l'informatique. Une base de données est un ensemble organisé de données, généralement st...Discuss·1 like·33 readsPython 3
Michafreecodenava.hashnode.dev·Oct 23, 2023How to create a Python sqlite3 database managerA database system is one of the best things any IT expert should know, because all the best programs around the globe need a file to hold their content, not just to save them but to easily access them. That is the best way to think about using well-d...DiscussPython