https://github.com/178inaba/go-orm-example
Example of Go ORM.
https://github.com/178inaba/go-orm-example
golang gorm gorp orm sqlx
Last synced: 8 months ago
JSON representation
Example of Go ORM.
- Host: GitHub
- URL: https://github.com/178inaba/go-orm-example
- Owner: 178inaba
- License: mit
- Created: 2020-01-19T16:51:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-29T16:50:43.000Z (over 6 years ago)
- Last Synced: 2024-05-01T14:27:55.659Z (about 2 years ago)
- Topics: golang, gorm, gorp, orm, sqlx
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go ORM Example
This repository is example of Go ORM.
- [gorm](https://github.com/jinzhu/gorm)
- [gorp](https://github.com/go-gorp/gorp)
- [sqlx](https://github.com/jmoiron/sqlx)
## Setup
```console
$ mysql -u root -h 127.0.0.1 < misc/queries/create_database.sql
$ mysql -u root -h 127.0.0.1 go_orm_example < misc/queries/ddl.sql
$ mysql -u root -h 127.0.0.1 go_orm_example < misc/queries/test_data.sql
```
## License
[MIT](LICENSE)
## Author
Masahiro Furudate (a.k.a. [178inaba](https://github.com/178inaba))
<178inaba.git@gmail.com>