Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I Have a software built in Java/Swing mysql. Can I use any Cloud Service for storing and retrieving data with JDBC? or what else i can use?

share|improve this question

1 Answer

Yes, there are several SQL-in-the-cloud options, including Amazon RDS and Google Cloud SQL both of which offer MySQL. Once set up, you can connect to them using JDBC like any other MySQL database.

share|improve this answer
simple JDBC will do ? or requires some more coding And my software is not using any web component.. Sorry I don't have even a bit of experience for cloud databases. – sampopes 40 mins ago
Simple JDBC will do. Whichever provider you go with, their online admin tools and documentation will help you work out the connection parameters you need (including authentication). Probably best to start by following a tutorial. – Simon Poole 34 mins ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.