Documentation, issue #45.

This commit is contained in:
Nuno Cruces
2023-12-22 02:45:26 +00:00
parent 89202629ec
commit 1ebdeed565
4 changed files with 8 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
package sqlite3
// Pointer returns a pointer to a value
// that can be used as an argument to
// Pointer returns a pointer to a value that can be used as an argument to
// [database/sql.DB.Exec] and similar methods.
// Pointer should NOT be used with [BindPointer] or [ResultPointer].
//
// https://sqlite.org/bindptr.html
func Pointer[T any](val T) any {