Showing 25 modules with matching packages. Search help

sql (database/sql)

standard library

Package sql provides a generic interface around SQL (or SQL-like) databases.

Imported by 192,619 | go1.25.5 published on Dec 2, 2025 | BSD-3-Clause

Package driver defines interfaces to be implemented by database drivers as used by package sql.

Imported by 32,482 | go1.25.5 published on Dec 2, 2025 | BSD-3-Clause

Package sqlgraph provides graph abstraction capabilities on top of sql-based databases for ent codegen.

Imported by 4,396 | v0.14.5 published on Jul 21, 2025 | Apache-2.0
Other packages in module entgo.io/ent: dialect/sql dialect/sql/schema

package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver) database servers.

Imported by 2,826 | v0.12.3 published on Oct 11, 2022 | BSD-3-Clause

Package dburl provides a standard, net/url.URL style mechanism for parsing and opening SQL database connection strings for Go.

Imported by 521 | v0.24.2 published on Dec 19, 2025 | MIT

package mssql implements the TDS protocol used to connect to MS SQL Server (sqlserver) database servers.

Imported by 417 | v1.9.5 published on Dec 4, 2025 | BSD-3-Clause

Package sqlgraph provides graph abstraction capabilities on top of sql-based databases for fluent codegen.

Imported by 148 | v0.1.10 published on Dec 11, 2024 | Apache-2.0

Package sqlgraph provides graph abstraction capabilities on top of sql-based databases for ent codegen.

Imported by 138 | v0.0.1 published on Oct 24, 2024 | Apache-2.0

Package sql provides functions to trace the database/sql package (https://golang.org/pkg/database/sql).

Imported by 129 | v1.74.8 published on Oct 24, 2025 | Apache-2.0, BSD-3-Clause
Imported by 119 | v0.0.0-...-20ce58d published on Nov 14, 2025 | Apache-2.0

Package mysql provides a MySQL driver for Go's database/sql package.

Imported by 51,532 | v1.9.3 published on Jun 13, 2025 | MPL-2.0

SQL Schema migration tool for Go.

Imported by 1,885 | v1.8.1 published on Nov 20, 2025 | MIT

Package gorp provides a simple way to marshal Go structs to and from SQL databases.

Imported by 36 | v3.1.0 published on Oct 18, 2022 | MIT
Other major versions: v1

Package gorp provides a simple way to marshal Go structs to and from SQL databases.

Imported by 618 | v1.6.1 published on May 29, 2014 | MIT

Package sqlite3 provides interface to SQLite3 databases.

Imported by 23,349 | v1.14.32 published on Aug 14, 2025 | MIT

Package gorp provides a simple way to marshal Go structs to and from SQL databases.

Imported by 156 | v2.2.0 published on Oct 26, 2019 | MIT
Other major versions: v1

Package sessions provides sessions support for net/http and valyala/fasthttp unique with auto-GC, register unlimited number of databases to Load and Update/Save the sessions in external server or to an external (no/or/and sql) database Usage net/http: // init a new sessions manager( if you use only one web framework inside your app then you can use the package-level functions like: sessions.Start/sessions.Destroy) manager := sessions.New(sessions.Config{}) // start a session for a particular client manager.Start(http.ResponseWriter, *http.Request) // destroy a session from the server and client, // don't call it on each handler, only on the handler you want the client to 'logout' or something like this: manager.Destroy(http.ResponseWriter, *http.Request) Usage valyala/fasthttp: // init a new sessions manager( if you use only one web framework inside your app then you can use the package-level functions like: sessions.Start/sessions.Destroy) manager := sessions.New(sessions.Config{}) // start a session for a particular client manager.StartFasthttp(*fasthttp.RequestCtx) // destroy a session from the server and client, // don't call it on each handler, only on the handler you want the client to 'logout' or something like this: manager.DestroyFasthttp(*fasthttp.Request) Note that, now, you can use both fasthttp and net/http within the same sessions manager(.New) instance! So now, you can share sessions between a net/http app and valyala/fasthttp app

Imported by 233 | v3.0.0+incompatible published on Apr 22, 2018 | MIT
Didn't find what you were looking for? Show more results.