question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AWS Aurora Data API Support?

See original GitHub issue

Issue type:

[ ] question [ ] bug report [x] feature request [ ] documentation issue

Database system/driver:

[ ] cordova [ ] mongodb [ ] mssql [x] mysql / mariadb [ ] oracle [ ] postgres [ ] cockroachdb [ ] sqlite [ ] sqljs [ ] react-native [ ] expo

TypeORM version:

[x] latest [ ] @next [ ] 0.x.x (or put your version here)

Steps to reproduce or a small repository showing the problem:

https://aws.amazon.com/about-aws/whats-new/2018/11/aurora-serverless-data-api-beta/ AWS released new feature called data api which I can query sql through HTTP Request for Aurora Serverless MySQL Edition. Is there any chance that typeorm will provide this feature? Otherwise, I would like to get advise how to apply this feature with typeorm. Thanks 😃

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:3
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

7reactions
ArsenyYankovskycommented, Jul 15, 2019

I submitted a PR with the first implementation: https://github.com/typeorm/typeorm/pull/4375 Most of the queries should work fine.

1reaction
lopuncommented, Jul 3, 2019

Thanks for issuing on mysql repository! @Can-Sahin 🙇 Actually all I need is to know whether I can get only sql from Entity without using querybuilder. Here’s an example for things I wanna do.

import User from 'src/entities/User'

const getSqlToFindUser = () => {
  // note that this isn't promise.
  const sql = User.find({id: 1}).toSql()
  // call data api with this sql string
}

I want to get only sql string from repository API(Entity). Is it possible to do so?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Using the Data API for Aurora Serverless v1
The API provides a more secure way to use AWS Lambda. It enables you to access your DB cluster without your needing to...
Read more >
Use the RDS Data API - Amazon Aurora Labs for MySQL
This lab will show you how to connect to and interact with Amazon Aurora Serverless database clusters using AWS Lambda functions and the...
Read more >
Enable DATA Api for Amazon Aurora - Stack Overflow
Package rdsdataservice provides the client and types for making API requests to AWS RDS DataService. Amazon RDS provides an HTTP endpoint to run ......
Read more >
Serverless Databasing with the Aurora Data API
And by using the RDS Data API, you can run outside of a VPC — very useful for the case where your webhook...
Read more >
Interacting with AWS Aurora Serverless | by Eden Hare | Medium
Enabling the Data API is done when the Aurora Serverless cluster is created by selecting the Data API checkbox in the Network &...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found