SQLQueryHelperjs - v1.2.6
Preparing search index...
index
PostgresQueryConnection
Interface PostgresQueryConnection
Minimal PostgreSQL client contract accepted by the PostgreSQL query builders.
interface
PostgresQueryConnection
{
query
<
T
extends
QueryResultRow
=
QueryResultRow
>
(
sql
:
string
,
params
?:
unknown
[]
,
)
:
Promise
<
{
rows
:
T
[]
;
rowCount
?:
number
|
null
}
>
;
}
Index
Methods
query
Methods
query
query
<
T
extends
QueryResultRow
=
QueryResultRow
>
(
sql
:
string
,
params
?:
unknown
[]
,
)
:
Promise
<
{
rows
:
T
[]
;
rowCount
?:
number
|
null
}
>
Type Parameters
T
extends
QueryResultRow
=
QueryResultRow
Parameters
sql
:
string
Optional
params
:
unknown
[]
Returns
Promise
<
{
rows
:
T
[]
;
rowCount
?:
number
|
null
}
>
Settings
Member Visibility
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
query
SQLQueryHelperjs - v1.2.6
Loading...
Minimal PostgreSQL client contract accepted by the PostgreSQL query builders.