bing050802 / goyesql

Go + Yesql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go Go Report Card GoDoc

goyesql

Golang + Yesql

Parse a file and associate SQL queries to a map. Useful for separating SQL from code logic.

Installation

$ go get -u github.com/nleof/goyesql

Usage

Create a file containing your SQL queries

-- queries.sql

-- name: list
SELECT *
FROM foo;

-- name: get
SELECT *
FROM foo
WHERE bar = $1;

And just call them in your code!

queries := goyesql.MustParseFile("queries.sql")
// use queries["list"] with sql/database, sqlx ...

Enjoy!

About

Go + Yesql

License:BSD 2-Clause "Simplified" License


Languages

Language:Go 100.0%