insertRow method
Future<QueryLogEntry>
insertRow(
- DatabaseSession session,
- QueryLogEntry row, {
- Transaction? transaction,
Inserts a single QueryLogEntry and returns the inserted row.
The returned QueryLogEntry will have its id field set.
Implementation
Future<QueryLogEntry> insertRow(
_i1.DatabaseSession session,
QueryLogEntry row, {
_i1.Transaction? transaction,
}) async {
return session.db.insertRow<QueryLogEntry>(
row,
transaction: transaction,
);
}