https://github.com/devlights/try-golang-db
try-golang プロジェクトの姉妹版。データベースに関連しているサンプルが配置されています。
https://github.com/devlights/try-golang-db
Last synced: about 2 months ago
JSON representation
try-golang プロジェクトの姉妹版。データベースに関連しているサンプルが配置されています。
- Host: GitHub
- URL: https://github.com/devlights/try-golang-db
- Owner: devlights
- License: mit
- Created: 2022-02-25T06:34:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-17T05:36:24.000Z (4 months ago)
- Last Synced: 2025-02-12T08:58:26.805Z (4 months ago)
- Language: Go
- Homepage:
- Size: 54.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# try-golang-db
[try-golang](https://github.com/devlights/try-golang) プロジェクトの姉妹版。データベースに関連しているサンプルが配置されています。

## 参考情報
### ブログ記事など
- [Tutorial: Accessing a relational database](https://go.dev/doc/tutorial/database-access)
- [Accessing relational databases](https://go.dev/doc/database/index)
- [Opening a database handle](https://go.dev/doc/database/open-handle)
- [Executing SQL statements that don't return data](https://go.dev/doc/database/change-data)
- [Querying for data](https://go.dev/doc/database/querying)
- [Using prepared statements](https://go.dev/doc/database/prepared-statements)
- [Executing transactions](https://go.dev/doc/database/execute-transactions)
- [Canceling in-progress database operations](https://go.dev/doc/database/cancel-operations)
- [Managing connections](https://go.dev/doc/database/manage-connections)
- [Avoiding SQL injection risk](https://go.dev/doc/database/sql-injection)
- [Golang with database operations](https://dev.to/burrock/golang-with-database-operations-3jl0)
- [Go言語でSQLite3を使う](https://zenn.dev/teasy/articles/go-sqlite3-sample)
- [Go ORMs Compared](https://dev.to/encore/go-orms-compared-2c8g)
- [Go database/sql の操作ガイドあったんかい](https://sourjp.github.io/posts/go-db/)### ドライバやORMなど
- [mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)
- [glebarez/go-sqlite](https://github.com/glebarez/go-sqlite)
- [modernc.org/sqlite](https://gitlab.com/cznic/sqlite)
- [uptrace/bun](https://github.com/uptrace/bun)
- [sqlx](https://github.com/jmoiron/sqlx)
- [sqlc](https://github.com/sqlc-dev/sqlc)
- [textql](https://github.com/dinedal/textql)
- [xlsxsql](https://github.com/noborus/xlsxsql)
- [trdsql](https://github.com/noborus/trdsql)
- [scan](https://github.com/blockloop/scan)
- [gorm](https://github.com/go-gorm/gorm)
- [ent](https://github.com/ent/ent)
- [sqlmap](https://github.com/devlights/sqlmap)
- [upper/db](https://github.com/upper/db)