user3278422
user3278422

Reputation: 1

how to get or insert data in mysq rds amazon from iphone application

I am working app in which i want that app should connect to Mysql rds on amazon problem is that when we use simpple db they have there api and other things to connect the db and also the domain but how to connect my sql data base tables in iOS app I have search and found that they dynamicdb also so does mysql will be under dynamic db and we will access that use dynamic db api.

Upvotes: 0

Views: 285

Answers (1)

Mike Brant
Mike Brant

Reputation: 71424

You are going to want an intermediary web service via which database interactions are made. Without this, you would need to make your database have basically no access restrictions AND embed your DB credentials in your app. This would be extremely foolish.

Upvotes: 1

Related Questions