dialects

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 1, 2016 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dialect

type Dialect interface {
	// EscapeIdent safely escapes identificatiors (such as column or table
	// names, etc.)
	EscapeIdent(w io.Writer, ident string)

	// EscapeBool safely escapes boolean variables.
	EscapeBool(w io.Writer, v bool)

	// EscapeString safely escapes strings.
	EscapeString(w io.Writer, s string)

	// EscapeBytes safely escapes byte slices.
	EscapeBytes(w io.Writer, b []byte)

	// EscapeTime safely escapes time.Time variables.
	EscapeTime(w io.Writer, t time.Time)

	// PrintPlaceholderSign prints nth placeholder sign starting from 1.
	PrintPlaceholderSign(w io.Writer, n int)
}

Dialect is the interface that describes a dialect of a particular SQL driver.

func MySQL

func MySQL() Dialect

MySQL returns the MySQL dialect.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL