@earth-app/collegedb
Preparing search index...
PostgresClientLike
Interface PostgresClientLike
Minimal PostgreSQL client contract used by the SQL adapter.
interface
PostgresClientLike
{
query
<
T
=
Record
<
string
,
unknown
>
>
(
sql
:
string
,
bindings
?:
any
[]
,
)
:
Promise
<
PostgresQueryResult
<
T
>
>
;
}
Index
Methods
query
Methods
query
query
<
T
=
Record
<
string
,
unknown
>
>
(
sql
:
string
,
bindings
?:
any
[]
,
)
:
Promise
<
PostgresQueryResult
<
T
>
>
Type Parameters
T
=
Record
<
string
,
unknown
>
Parameters
sql
:
string
Optional
bindings
:
any
[]
Returns
Promise
<
PostgresQueryResult
<
T
>
>
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Methods
query
@earth-app/collegedb
Loading...
Minimal PostgreSQL client contract used by the SQL adapter.