Quote:
Originally Posted by jimmy
is it possible to connect an Iphone Application with a Mysql database inorder to Authenticate a login? thanks ...
|
The short answer is yes. Although there is no connectMySQL method in the SDK, you could use network sockects to write a method that does just that. I doubt you want to go to that trouble though! Please send me the code if you do write it
You might think about using iPhone's NSURLConnection class to connect to a web server that authenticates for you. You would need to develop something on the server side to handle the authentication process. What language you choose is just personal choice. I wrote this into an app I developed and I used Perl on the server side. I have seen it done in PHP, ASP, etc so use whatever language you prefer on the server side.
Hope this helps!
NP