MangoSQL is a fresh and juicy SQL code generator for Golang.
- Provide your database schema and queries (in .sql files)
- Run MangoSQL cli to generate a client with type-safe interfaces and queries
- Write application code based on this generated db client
MangoSQL is the perfect choice if you don't want an heavy ORM, but don't want to write all the SQL queries by hand like a caveman either. Originally inspired by SQLC, but pushes the idea farther by natively supporting batching, relations and dynamic queries.
Links: 🚀 Getting Started | 💻 API Reference | 📈 Benchmark
- Convenient: All the structs are generated for you, No need to manually write any DTO/PDO
- Time Saver: All the basic CRUD queries are generated from your schema alone, less queries to write
- Safe: All the SQL queries use prepared statement to avoid injection
- Consistent: Easy to use transaction API to rollback when an error occurs
- Fast: Get the performances of a handmade
sql.go
in an instant
So let's see what it means in reality. For the following:
CREATE TABLE users (
id UUID PRIMARY KEY,
email VARCHAR(64) NOT NULL,
name VARCHAR(64) NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
deleted_at TIMESTAMP DEFAULT NULL
);
Execute the following command to automatically generate a database/client.go
mangosql --output=database schema.sql
This is all you need to do, now the client can be used in your code
db := database.New(dbConnection)
// Handle crud operation
user, err := db.User.Insert(database.UserCreate{
Name: "user1",
Email: "[email protected]"
})
// Typed dynamic clauses (filters, pagination, ...) with typed helpers
users, err := db.User.FindMany(
db.User.Query.Name.Like("%user%"),
db.User.Query.Limit(20)
)
// Raw dynamic clauses
users, err := db.User.FindMany(func(query SelectBuilder) SelectBuilder {
return query.Where("name ILIKE $1 OR name ILIKE $2", "%user1%", "%user2%")
})
// To know more about MangoSQL APIs ... RTFM ^^