sqlite icon indicating copy to clipboard operation
sqlite copied to clipboard

Go SQLite3 driver

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

Using version 23d646f8ac00 With the program below, the function that uses Pool leaves behind WAL files after the pool is closed. It is almost as if the Conn is not...

bug
question

So far this only has failing tests. It is intended to fix #119

Hi, First of all, thank you for creating this library. I've been using `database/sql` for my personal projects for a while now, and having to jump through hoops to get...

enhancement

I was wondering what is the state of this repository. I think crawshaw/sqlite is an amazing take on the SQLite driver for Go. It seems though that the original authors...

Using [sonyflake IDs](https://github.com/sony/sonyflake) and getting odd behavior ![image](https://user-images.githubusercontent.com/438252/103395885-3b6e9080-4ae5-11eb-9e56-ddbc968395d6.png) Most of the time its the correct value however I'm getting a ton of off by 1 values ![image](https://user-images.githubusercontent.com/438252/103395946-796bb480-4ae5-11eb-816c-e4993602c663.png) When doing something...

invalid
question

Is there any roadmap to use/port in [sqlcipher](https://github.com/sqlcipher/sqlcipher) or any other encryptions into this library?

enhancement

Are virtual tables usable somewhere in the API? If not are there any plans to implement that? Would you know any packages that do provide it? Thanks!

enhancement
question

I see the mistake I was making now, but it would have been nicer if it had panic'd. I got tempted by `sqliteutil.ResultText`. Maybe some docs could have stopped me,...

bug
enhancement

This is very cool, thank you for sharing. One thing I would love to see are event hooks where I can register my custom function to be called after all...

enhancement

I don't see any way to have blob result when using `CreateFunction`. I need a custom function that drops the last byte off a blob type. Example: ```go v.db.CreateFunction("POPS", true,...