Eae gente bonita, tudo bem com vocês? Continuando nossa série de publicações, hoje nós vamos falar sobre procedures!
O que é?
Procedures ou store procedures, é um conjunto de comandos t...
ASP.NET Core Minimal APIs let us create web APIs quickly with less code—like a fast way to build a to-do list app. In this guide, we’ll make a Todo API step by step using .NET 8. It’ll let us ad...
Migrating from a SQL database to DynamoDB is not a one-size-fits-all decision.It requires a deep understanding of access patterns, data modeling techniques, and costs. I only recommend this migration ...
When working with data in modern systems, one of the first concepts that comes up is the type of database we’re going to use. And one of the main decisions we have to make is between traditional rel...
Why do we audit data? When & how would we want to retrospectively view what information has changed over time? Answering these questions will help you zero in on an auditing approach that works fo...
Introduction
Would you be able to build a web project? Want to collect data from a form and store it in a MySQL database? You’re in the right place! In this guide, I’ll walk you through c...
Most of the actions you need to perform on a database are done with SQL statements.
CREATE DATABASE: statement is used to create a new SQL database.
⛶CREATE DATABASE databasename;
DROP: The DROP DA...
SQL is the language that powers data management, and mastering its core commands is essential for anyone working with databases. Let’s break them down into five main categories:✅ DQL (Data Query L...
Kapper, Kotlin's most lightweight and idiomatic ORM library brings more Kotlin goodness with support for Flows.
Kapper 1.3 supports queries returning Kotlin Flows.
What are Flows?
Flows are a ...
A database is an organized collection of data that is stored and managed electronically. It allows users to store, retrieve, update, and delete data efficiently. Databases are used in various applicat...