package sqlx import ( "errors" ) var ( errCantNestTx = errors.New("cannot nest transactions") errNoRawDBFromTx = errors.New("cannot get raw db from transaction") )