Code Monkey home page Code Monkey logo

sqlair's Introduction

SQLair

Go Reference Go Report Card CI

Friendly type mapping in Go for SQL databases.

Features

SQLair extends the SQL syntax to allow Go types to be referenced directly in the SQL query. The full power of SQL is retained but with all the benefits of convenient type mapping.

SQLair allows you to:

  • Map database rows directly into Go structs and maps
  • Cite Go structs and maps in the query parameters
  • Write rich queries in SQL
  • Organise your code conveniently

Things SQLair does not do:

  • Act as a traditional ORM
  • Optimise queries

For example, instead of the pure SQL query:

	SELECT name, id, team
	FROM person
	WHERE manager_name = ?

With SQLair one would write:

	SELECT &Person.*
	FROM person
	WHERE manager_name = $Manager.name

Where Person and Manager are Go structs.

The SQL syntax is expanded with SQLair input and output expressions (indicated with $ and & respectively) which indicate parts of the query that correspond to Go structs. This package also provides an alternative API for reading the rows from the database. SQLair relies on database/sql for all the underlying operations.

For more details please see the SQLair introduction and the Go package documentation.

Contributing

See our code and contribution guidelines

sqlair's People

Contributors

aflynn50 avatar letfunny avatar manadart avatar fernape avatar niemeyer avatar

Watchers

 avatar

Forkers

letfunny

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.