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

Is it really necessary to inject casts into the query?

Hello, I get this error on about 1% of executions... Looks like there are no more available connections, but isn't aurora serverless supposed to autoscale automatically? ``` { "errorType": "Runtime.UnhandledPromiseRejection",...

question

const rds = require('data-api-client')({ secretArn: process.env.rdsSecretArn, resourceArn: process.env.rdsArn, database: process.env.rdsDatabase, region: process.env.awsRegion, }); await rds.query('update users set name = :name where email = :email', { name: 'Test User', email: '[email protected]'...

aurora serverless with postgresql returns `typeName` as lowercase. because of this, the function `formatRecordValue` does not function properly for pg responses. to fix, I cast the `typeName` to uppercase at...

Some type definitions (and specifically the ones regarding the `rollback` and the `commit` method) are not aligned to how the JS code effectively behaves, resulting in @ts-ignore annotations being inserted...

I see several PRs dating back to March adding features like parsing array, JSON, dates and other things that are hanging here without any interaction from @jeremydaly. Just wondering if...

Support parsing postgres jsonb data type. Related to #105

The V3 of the SDK is now generally available (see [blog post](https://aws.amazon.com/blogs/developer/modular-aws-sdk-for-javascript-is-now-generally-available/)). > The AWS SDK for JavaScript v3 is a rewrite of v2 with some great new features. As...

Hello, Does any one know how to get this to work with Next.js api routes?