Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Quote ¶
Quote quotes the given MS SQL identifier
https://docs.microsoft.com/en-us/sql/relational-databases/databases/database-identifiers
Types ¶
type Savepointer ¶
type Savepointer struct{}
Savepointer implements the savepointers.Savepointer interface for MS SQL
func (Savepointer) Create ¶
func (sp Savepointer) Create(name string) string
Create creates a new savepoint with the given name
Note: names have a max length of 32 characters
https://docs.microsoft.com/en-us/sql/t-sql/language-elements/save-transaction-transact-sql
func (Savepointer) Release ¶
func (sp Savepointer) Release(name string) string
Release releases the named savepoint. Releasing a savepoint is not implemented in MS SQL
func (Savepointer) Rollback ¶
func (sp Savepointer) Rollback(name string) string
Rollback rollsback the named savepoint
https://docs.microsoft.com/en-us/sql/t-sql/language-elements/rollback-work-transact-sql
Click to show internal directories.
Click to hide internal directories.