This effort is just getting underway. There is nothing working here at this time.
The goal of this project is to deliver a package that will generate a pool of connections that will behave similar to the the stdlib database/sql pool but overcome some of its shortcomings for sqlite. The primary shortcoming from my experience is the inability to retain prepared queries when a connection is returned to the pool and to subsequently access these prepared statements when a connection is received from the pool.
To use this module in your Go project, you can use the go get command:
$ go get -u github.com/lbe/sqlitepoolTBD: Explain how users can import and use your module in their Go projects. Provide code examples if necessary.
package main
import (
"fmt"
"github.com/lbe/sqlitepool"
)
func main() {
// Example usage
fmt.Println(your_module_name.YourFunction())
}TBD: If your module has configuration options, document them here.
TBD: Explain how others can contribute to your project. Include guidelines for reporting issues, submitting feature requests, and making pull requests.
This project is licensed under the MIT License - see the LICENSE.md file for details.
TBD: Give credit to any contributors, libraries, or tools that your module depends on.
Please contact me by adding issues to this repository.
See the RELEASE-NOTES.tpl.md file for details.
If you encounter any issues or have questions, feel free to create an issue.