user2427771
user2427771

Reputation: 43

Connecting to Amazon RDS through a java client using AmazonRDSClientBuilder

I am trying to work with AmazonRDS (mysql) . With regular jdbc connection setup in a spring-boot application connecting, doing CRUD operations works without issues. I am exploring on AmazonRDS java SDK; I would like to use AmazonRDSClientBuilder/AmazonRDSAsyncClientBuilder to do the above operations. I couldn't find much examples out there, is there any one who tried this approach ? Is there a good reference link / documentation I can take help of to do this?

Upvotes: 3

Views: 1477

Answers (1)

Mark B
Mark B

Reputation: 201048

AmazonRDSClient, and all the other RDS stuff in the SDK, is for creating and managing RDS database resources. You don't use the SDK for querying RDS databases and performing CRUD operations. JDBC is the correct, and only way for performing CRUD operations against your MySQL database in your Java application.

Upvotes: 6

Related Questions