dal-go / dalgo

Database Abstraction Layer (DAL) in Go language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feature: Implement simple query interface

trakhimenok opened this issue · comments

Should support:

  • Simple filtering by AND (optional OR support)
  • Ordering (ascending & descending)
  • Limit(n int)
  • Query.String() to SQL
  • Cursor (optional, for 1st version)

Limitations:

  • Single entity (table), e.g. no joins (for now)

Initial implementation should have a bridge for Google AppEngine.