RU RU

All Posts

036 | Databases in Detail: SQLite — A Compact and Embedded Database

June 28, 2025

We’ve already explored the powerful server-based giants MySQL and PostgreSQL, but the database world is much more diverse. Today, we’re turning to a unique player — SQLite. Unlike its “bigger brothers,” SQLite is not a standalone server but an embedded library that stores the entire database in a single file.


What is SQLite?

SQLite is a free and public domain relational database management system (RDBMS). Its defining feature — and what sets it apart from other DBMSs — is that it does not require a separate server process. SQLite is implemented as a compact C library embedded directly into your application. The database is stored in one or more standard disk files, making deployment and usage incredibly simple.

033 | Database Servers: Your Digital Archive and Application Brain — Overview of Types and Use Cases

June 25, 2025

In today’s digital world, where every click, purchase, or message generates data, there’s a pressing need for efficient storage, management, and fast access. That’s exactly what database servers are for. They are the invisible but essential foundation of any dynamic application — from simple blogs and e-commerce platforms to complex enterprise systems, financial tools, and AI solutions.


What is a Database (DB) and Why Do You Need One?

A database (DB) is an organized collection of information, structured in a way that makes it easy to access, manage, and update. A database server is a software system that provides access and management services for one or more databases.