SYMBOL INDEX (27 symbols across 2 files) FILE: sqalx.go type Node (line 24) | type Node interface type Driver (line 45) | type Driver interface function New (line 73) | func New(db *sqlx.DB, options ...Option) (Node, error) { function NewFromTransaction (line 90) | func NewFromTransaction(tx *sqlx.Tx, options ...Option) (Node, error) { function Connect (line 107) | func Connect(driverName, dataSourceName string, options ...Option) (Node... type node (line 124) | type node struct method Close (line 133) | func (n *node) Close() error { method Beginx (line 137) | func (n node) Beginx() (Node, error) { method BeginTxx (line 141) | func (n node) BeginTxx(ctx context.Context, opts *sql.TxOptions) (Node... method Rollback (line 167) | func (n *node) Rollback() error { method Commit (line 190) | func (n *node) Commit() error { method Tx (line 214) | func (n *node) Tx() *sqlx.Tx { type Option (line 219) | type Option function SavePoint (line 223) | func SavePoint(enabled bool) Option { FILE: sqalx_test.go function prepareDB (line 18) | func prepareDB(t *testing.T, driverName string) (*sqlx.DB, sqlmock.Sqlmo... function TestSqalxConnectPostgreSQL (line 27) | func TestSqalxConnectPostgreSQL(t *testing.T) { function TestSqalxConnectPGX (line 38) | func TestSqalxConnectPGX(t *testing.T) { function TestSqalxConnectSqlite (line 50) | func TestSqalxConnectSqlite(t *testing.T) { function TestSqalxConnectMySQL (line 61) | func TestSqalxConnectMySQL(t *testing.T) { function testSqalxConnect (line 73) | func testSqalxConnect(t *testing.T, driverName, dataSource string, optio... function TestSqalxTransactionViolations (line 81) | func TestSqalxTransactionViolations(t *testing.T) { function TestSqalxSimpleQuery (line 103) | func TestSqalxSimpleQuery(t *testing.T) { function TestSqalxTopLevelTransaction (line 116) | func TestSqalxTopLevelTransaction(t *testing.T) { function TestSqalxNestedTransactions (line 143) | func TestSqalxNestedTransactions(t *testing.T) { function TestSqalxNestedTransactionsWithSavePoint (line 147) | func TestSqalxNestedTransactionsWithSavePoint(t *testing.T) { function testSqalxNestedTransactions (line 160) | func testSqalxNestedTransactions(t *testing.T, driverName string, testSa... function TestSqalxFromTransaction (line 234) | func TestSqalxFromTransaction(t *testing.T) {