gino.engine module
class gino.engine.GinoConnection
(dialect, sa_conn, stack=None)
基类:object
Represents an actual database connection.
This is the root of all query API like all()
, first()
, one()
, one_or_none()
, scalar()
or status()
, those on engine or query are simply wrappers of methods in this class.
Usually instances of this class are created by GinoEngine.acquire()
.
注解
GinoConnection
may refer to zero or one underlying database connection - when a GinoConnection
is acquired with lazy=True
, the underlying connection may still be in the pool, until a query API is called or get_raw_connection()
is called.
Oppositely, one underlying database connection can be shared by many GinoConnection
instances when they are acquired with reuse=True
. The actual database connection is only returned to the pool when the root GinoConnection
is released. Read more in GinoEngine.acquire()
method.
参见
async
all
(clause, \multiparams, **params*)Runs the given query in database, returns all results as a list.
This method accepts the same parameters taken by SQLAlchemy
execute()
. You can pass in a raw SQL string, or any SQLAlchemy query clauses.If the given query clause is built by CRUD models, then the returning rows will be turned into relevant model objects (Only one type of model per query is supported for now, no relationship support yet). See
execution_options()
for more information.If the given parameters are parsed as “executemany” - bulk inserting multiple rows in one call for example, the returning result from database will be discarded and this method will return
None
.property
dialect
The
Dialect
in use, inherited from the engine created this connection.execution_options
(\*opt*)Set non-SQL options for the connection which take effect during execution.
This method returns a copy of this
GinoConnection
which references the same underlying database connection, but with the given execution options set on the copy. Therefore, it is a good practice to discard the copy immediately after use, for example:row = await conn.execution_options(model=None).first(User.query)
This is very much the same as SQLAlchemy
execution_options()
, it actually does pass the execution options to the underlying SQLAlchemyConnection
. Furthermore, GINO added a few execution options:参数
return_model — Boolean to control whether the returning results should be loaded into model instances, where the model class is defined in another execution option
model
. Default isTrue
.model — Specifies the type of model instance to create on return. This has no effect if
return_model
is set toFalse
. Usually in queries built by CRUD models, this execution option is automatically set. For now, GINO only supports loading each row into one type of model object, relationships are not supported. Please use multiple queries for that.None
for no postprocessing (default).timeout — Seconds to wait for the query to finish.
None
for no time out (default).loader —
A loader expression to load the database rows into specified objective structure. It can be either:
A model class, so that the query will yield model instances of this class. It is your responsibility to make sure all the columns of this model is selected in the query.
A
Column
instance, so that each result will be only a single value of this column. Please note, if you want to achieve fetching the very first value, you should usefirst()
instead ofscalar()
. However, using directlyscalar()
is a more direct way.A tuple nesting more loader expressions recursively.
A
callable()
function that will be called for each row to fully customize the result. Two positional arguments will be passed to the function: the first is therow
instance, the second is a context object which is only present if nested elseNone
.A
Loader
instance directly.Anything else will be treated as literal values thus returned as whatever they are.
async
first
(clause, \multiparams, **params*)Runs the given query in database, returns the first result.
If the query returns no result, this method will return
None
.See
all()
for common query comments.async
get_raw_connection
(**, timeout=None*)Get the underlying database connection, acquire one if none present.
参数
timeout — Seconds to wait for the underlying acquiring
返回
Underlying database connection instance depending on the dialect in use
Raises
TimeoutError
if the acquiring timed out
iterate
(clause, \multiparams, **params*)Creates a server-side cursor in database for large query results.
Cursors must work within transactions:
async with conn.transaction():
async for user in conn.iterate(User.query):
# handle each user without loading all users into memory
Alternatively, you can manually control how the cursor works:
async with conn.transaction():
cursor = await conn.iterate(User.query)
user = await cursor.next()
users = await cursor.many(10)
Read more about how
Cursor
works.Similarly, this method takes the same parameters as
all()
.async
one
(clause, \multiparams, **params*)Runs the given query in database, returns exactly one result.
If the query returns no result, this method will raise
NoResultFound
. If the query returns multiple results, this method will raiseMultipleResultsFound
.See
all()
for common query comments.async
one_or_none
(clause, \multiparams, **params*)Runs the given query in database, returns at most one result.
If the query returns no result, this method will return
None
. If the query returns multiple results, this method will raiseMultipleResultsFound
.See
all()
for common query comments.async
prepare
(clause)property
raw_connection
The current underlying database connection instance, type depends on the dialect in use. May be
None
if self is a lazy connection.async
release
(**, permanent=True*)Returns the underlying database connection to its pool.
If
permanent=False
, this connection will be set in lazy mode with underlying database connection returned, the next query on this connection will cause a new database connection acquired. This is useful when this connection may still be useful again later, while some long-running I/O operations are about to take place, which should not take up one database connection or even transaction for that long time.Otherwise with
permanent=True
(default), this connection will be marked as closed after returning to pool, and be no longer usable again.If this connection is a reusing connection, then only this connection is closed (depending on
permanent
), the reused underlying connection will not be returned back to the pool.Practically it is recommended to return connections in the reversed order as they are borrowed, but if this connection is a reused connection with still other opening connections reusing it, then on release the underlying connection will be returned to the pool, with all the reusing connections losing an available underlying connection. The availability of further operations on those reusing connections depends on the given
permanent
value.参见
async
scalar
(clause, \multiparams, **params*)Runs the given query in database, returns the first result.
If the query returns no result, this method will return
None
.See
all()
for common query comments.schema_for_object
= <sqlalchemy.sql.schema._SchemaTranslateMap object>A SQLAlchemy compatibility attribute, don’t use it for now, it bites.
async
status
(clause, \multiparams, **params*)Runs the given query in database, returns the query status.
The returning query status depends on underlying database and the dialect in use. For asyncpg it is a string, you can parse it like this: https://git.io/v7oze
transaction
(\args, **kwargs*)Starts a database transaction.
There are two ways using this method: managed as an asynchronous context manager:
async with conn.transaction() as tx:
# run query in transaction
or manually awaited:
tx = await conn.transaction()
try:
# run query in transaction
await tx.commit()
except Exception:
await tx.rollback()
raise
Where the
tx
is an instance of theGinoTransaction
class, feel free to read more about it.In the first managed mode, the transaction is automatically committed on exiting the context block, or rolled back if an exception was raised which led to the exit of the context. In the second manual mode, you’ll need to manually call the
commit()
orrollback()
methods on need.If this is a lazy connection, entering a transaction will cause a new database connection acquired if none was present.
Transactions may support nesting depending on the dialect in use. For example in asyncpg, starting a second transaction on the same connection will create a save point in the database.
For now, the parameters are directly passed to underlying database driver, read
asyncpg.connection.Connection.transaction()
for asyncpg.
class gino.engine.GinoEngine
(dialect, pool, loop, logging_name=None, echo=None, execution_options=None)
基类:object
Connects a Pool
and Dialect
together to provide a source of database connectivity and behavior.
A GinoEngine
object is instantiated publicly using the gino.create_engine()
function or db.set_bind()
method.
参见
acquire
(**, timeout=None, reuse=False, lazy=False, reusable=True*)Acquire a connection from the pool.
There are two ways using this method - as an asynchronous context manager:
async with engine.acquire() as conn:
# play with the connection
which will guarantee the connection is returned to the pool when leaving the
async with
block; or as a coroutine:conn = await engine.acquire()
try:
# play with the connection
finally:
await conn.release()
where the connection should be manually returned to the pool with
conn.release()
.Within the same context (usually the same
Task
, see also 数据库事务), a nesting acquire by default re参数
timeout — Block up to
timeout
seconds until there is one free connection in the pool. Default isNone
- block forever until succeeded. This has no effect whenlazy=True
, and depends on the actual situation whenreuse=True
.reuse — Reuse the latest reusable acquired connection (before it’s returned to the pool) in current context if there is one, or borrow a new one if none present. Default is
False
for always borrow a new one. This is useful when you are in a nested method call series, wishing to use the same connection without passing it around as parameters. See also: 数据库事务. A reusing connection is not reusable even ifreusable=True
. If the reused connection happened to be a lazy one, then the reusing connection is lazy too.lazy — Don’t acquire the actual underlying connection yet - do it only when needed. Default is
False
for always do it immediately. This is useful before entering a code block which may or may not make use of a given connection object. Feeding in a lazy connection will save the borrow-return job if the connection is never used. If settingreuse=True
at the same time, then the reused connection - if any - applies the same laziness. For example, reusing a lazy connection withlazy=False
will cause the reused connection to acquire an underlying connection immediately.reusable — Mark this connection as reusable or otherwise. This has no effect if it is a reusing connection. All reusable connections are placed in a stack, any reusing acquire operation will always reuse the top (latest) reusable connection. One reusable connection may be reused by several reusing connections - they all share one same underlying connection. Acquiring a connection with
reusable=False
andreusing=False
makes it a cleanly isolated connection which is only referenced once here.
返回
A
GinoConnection
object.
async
all
(clause, \multiparams, **params*)Acquires a connection with
reuse=True
and runsall()
on it.reuse=True
means you can safely do this without borrowing more than one underlying connection:async with engine.acquire():
await engine.all('SELECT ...')
The same applies for other query methods.
async
close
()Close the engine, by closing the underlying pool.
compile
(clause, \multiparams, **params*)A shortcut for
compile()
on the dialect, returns raw SQL string and parameters according to the rules of the dialect.connection_cls
Customizes the connection class to use, default is
GinoConnection
.GinoConnection
的别名property
current_connection
Gets the most recently acquired reusable connection in the context.
None
if there is no such connection.property
dialect
Read-only property for the
Dialect
of this engine.async
first
(clause, \multiparams, **params*)iterate
(clause, \multiparams, **params*)Creates a server-side cursor in database for large query results.
This requires that there is a reusable connection in the current context, and an active transaction is present. Then its
GinoConnection.iterate()
is executed and returned.async
one
(clause, \multiparams, **params*)async
one_or_none
(clause, \multiparams, **params*)Runs
one_or_none()
, Seeall()
.property
raw_pool
Read-only access to the underlying database connection pool instance. This depends on the actual dialect in use,
Pool
of asyncpg for example.repr
(color=False)async
scalar
(clause, \multiparams, **params*)async
status
(clause, \multiparams, **params*)transaction
(\args, timeout=None, reuse=True, reusable=True, **kwargs*)Borrows a new connection and starts a transaction with it.
Different to
GinoConnection.transaction()
, transaction on engine level supports only managed usage:async with engine.transaction() as tx:
# play with transaction here
Where the implicitly acquired connection is available as
tx.connection
.By default,
transaction()
acquires connection withreuse=True
andreusable=True
, that means it by default tries to create a nested transaction instead of a new transaction on a new connection. You can change the default behavior by setting these two arguments.The other arguments are the same as
transaction()
on connection.参见
返回
A asynchronous context manager that yields a
GinoTransaction
update_execution_options
(\*opt*)Update the default execution_options dictionary of this
GinoEngine
.参见