You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/src/execution_context.dart
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,8 @@ import 'dart:async';
3
3
import'connection.dart';
4
4
import'query.dart';
5
5
import'substituter.dart';
6
-
import'types.dart';
6
+
7
+
import'v3/types.dart';
7
8
8
9
abstractclassPostgreSQLExecutionContext {
9
10
/// Returns this context queue size
@@ -22,7 +23,7 @@ abstract class PostgreSQLExecutionContext {
22
23
/// connection.query("SELECT * FROM table WHERE id = @idParam:int4", {"idParam" : 2});
23
24
///
24
25
/// Available types are listed in [PostgreSQLFormatIdentifier.typeStringToCodeMap]. Some types have multiple options. It is preferable to use the [PostgreSQLFormat.id]
25
-
/// function to add parameters to a query string. This method inserts a parameter name and the appropriate ':type' string for a [PostgreSQLDataType].
26
+
/// function to add parameters to a query string. This method inserts a parameter name and the appropriate ':type' string for a [PgDataType].
26
27
///
27
28
/// If successful, the returned [Future] completes with a [List] of rows. Each is row is represented by a [List] of column values for that row that were returned by the query.
0 commit comments