# sqlite **Repository Path**: myzero1/sqlite ## Basic Information - **Project Name**: sqlite - **Description**: 因为github.com/cloudquery/sqlite找不到了,所以备份一个,通过和github.com/cloudquery/sqlite完全一样,sqlite3不需要cgo - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-13 - **Last Updated**: 2024-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README This is a fork of [github.com/go-gorm/sqlite](github.com/go-gorm/sqlite) That works with [modernc.org/sqlite](modernc.org/sqlite) which is a pure-go sqlite implementation. Obviously, because `modernc.org/sqlite` is a re-implementation of sqlite there might be missing features and stability issues. It should work for development or simple use-cases. # GORM Sqlite Driver ![CI](https://github.com/cloudquery/sqlite/workflows/CI/badge.svg) ## USAGE ```go import ( "gorm.io/cloudquery/sqlite" "gorm.io/gorm" ) // gitlab.com/modernc.org/sqlite db, err := gorm.Open(sqlite.Open("gorm.db"), &gorm.Config{}) ``` Checkout [https://gorm.io](https://gorm.io) for details.