db_model
db_model
Light model for mapping data from databases
Installation
Add this to your application's shard.yml
:
dependencies:
db_model:
github: tbrand/db_model
Usage
require "db_model"
# define mapped model
db_model User, id : Int32, account_name : String, passhash : String
# open db as usual
db = DB.open("some uri") # typeof(db) is DB::Database
# get array of users by arbitary queries
users = User.query(db, "select * from users") # Array(User)
user = users.first
user.to_json # => {"id": 1, "name": "test", "passhash": "abcde"}
created = User.from_json("{\"id\": 2, \"name\": \"test\", \"passhash\": \"fgehik\"}")
created.id # => 2
created.name # => "name"
You can use this feature as cache. For example, when you have redis instance
redis = Redis.new
redis.set("user_1", user.to_json)
...
user = User.from_json(redis.get("user_1"))
Contributing
- Fork it ( https://github.com/tbrand/db_model/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- tbrand Taichiro Suzuki - creator, maintainer
Repository
db_model
Owner
Statistic
- 0
- 0
- 0
- 0
- 1
- almost 8 years ago
- December 24, 2016
License
MIT License
Links
Synced at
Sun, 24 Nov 2024 15:53:29 GMT
Languages