data-api-client icon indicating copy to clipboard operation
data-api-client copied to clipboard

A "DocumentClient" for the Amazon Aurora Serverless Data API

Results 50 data-api-client issues
Sort by recently updated
recently updated
newest added

Hey there! Loving the library so far, much more comfortable than handling with the aws-sdk version. When I'm selecting from a table fields that are of type `DECIMAL`, they are...

I am wondering if this library should provide support for highload interaction with RDS Data API? RDS-serverless is great AWS service, but it has a tons caveats within highload interoperation....

Hello Im using data.executeStatement and it returns the values as expected , i just dont see away to get the column names resultSetMetadata is true , but still i dont...

Possibly related to #40, which was closed. I'd like to be able to specify a timeout on the client, so that I can detect slow responses (usually due to the...

Running the code like: ``` sql = `INSERT INTO unit (unit_name, supplier, deleted, "createdAt", "updatedAt", uuid) VALUES (:unit_name, :supplier, :deleted, :createdAt, :updatedAt, :uuid) RETURNING id`; const results = await rdsds.query(sql,...

Love this project @jeremydaly !!! I have a set of queries where I join 2-3 tables together and rely on the built-in PostgreSQL functions for `array_agg` to collect array properties....

Hey there. I'm loving this library so far, and have gone as far as adding [types](https://www.npmjs.com/package/@types/data-api-client) to it! One thing I have noticed is - in order to perform batch...

Hello, First of all, thanks for this library. It is so annoying having to use AWS SDK for this... Anyway, I detected what I think is a bug. My project...

wontfix

How can I connect to local mysql db for unit testing using data-api-client? Currently, I don't want to connect to AWS for each unit test.

I'm curious if this library handles partial objects in the parameter sets. This would happen when a subset of records/objects are modified at run time. For example ``` // Update...