package
0.0.0-20130121074735-1d03baafba06
Repository: https://github.com/icattlecoder/go.git
Documentation: pkg.go.dev

# Packages

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

# Functions

Open opens a database specified by its database driver name and a driver-specific data source name, usually consisting of at least a database name and connection information.
Register makes a database driver available by the provided name.

# Variables

ErrNoRows is returned by Scan when QueryRow doesn't return a row.
No description provided by the author

# Structs

DB is a database handle.
NullBool represents a bool that may be null.
NullFloat64 represents a float64 that may be null.
NullInt64 represents an int64 that may be null.
NullString represents a string that may be null.
Row is the result of calling QueryRow to select a single row.
Rows is the result of a query.
Stmt is a prepared statement.
Tx is an in-progress database transaction.

# Interfaces

A Result summarizes an executed SQL command.
Scanner is an interface used by Scan.

# Type aliases

RawBytes is a byte slice that holds a reference to memory owned by the database itself.