AWS Aurora Data API Support?
See original GitHub issueIssue 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:
- Created 4 years ago
- Reactions:3
- Comments:7 (3 by maintainers)
Top 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 >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I submitted a PR with the first implementation: https://github.com/typeorm/typeorm/pull/4375 Most of the queries should work fine.
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.
I want to get only sql string from repository API(Entity). Is it possible to do so?