Xorm Versions Save

Simple and Powerful ORM for Go, support mysql,postgres,tidb,sqlite3,mssql,oracle, Moved to https://gitea.com/xorm/xorm

v0.4.3

9 years ago
  • Json column type support
  • Oracle experiment support
  • Some bugs fixed

v0.4.2

9 years ago
  • Transaction will auto rollback if not Rollback or Commit be called.
  • Gonic Mapper support, so when you use ID in go codes, you can get id in database column name.
  • Some bugs fixed

v0.4.1

9 years ago
  • deleted tag support for soft delete
  • bug fixed

v0.3.1

10 years ago
  • Features:
    • Support MSSQL DB via ODBC driver (github.com/lunny/godbc);
    • Composite Key, using multiple pk xorm tag
    • Added Row() API as alternative to Iterate() API for traversing result set, provide similar usages to sql.Rows type
    • ORM struct allowed declaration of pointer builtin type as members to allow null DB fields
    • Before and After Event processors
  • Improvements:
    • Allowed int/int32/int64/uint/uint32/uint64/string as Primary Key type
    • Performance improvement for Get()/Find()/Iterate()