sqlite icon indicating copy to clipboard operation
sqlite copied to clipboard

The pure-Go SQLite driver for GORM

Results 23 sqlite issues
Sort by recently updated
recently updated
newest added

--- Test v1.9.0 is normal ![image](https://github.com/user-attachments/assets/7f13dcf8-a9e9-4aa9-af8e-748350ce533e) Test v1.10.0 only create one pk: id ![image](https://github.com/user-attachments/assets/d4761e79-bc57-4b2c-8f5d-01602702a904) Below is the test code: ```go package main import ( "testing" "github.com/glebarez/sqlite" "gorm.io/gorm" ) type MixConfig...

Enable to use glebarez/sqlite with libSQL by allowing custom connection. For more information: https://github.com/go-gorm/sqlite/pull/185

### When using `db.Create()` to create a column containing the time, it will contain the time zone ```golang type Example struct { Id int `gorm:"primaryKey;autoIncrement;"` CreatedAt time.Time UpdatedAt time.Time Name...