Is there any way to connect to a SQL Server from an Android application and execute/query SQL statements without Web Service/WCF etc?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
FreeTDS is a library written in C and available under LGPL, which allows one to connect to MSSQL and Sybase servers. I don’t think anyone has tried that, but I don’t see why it shouldn’t compile on Android NDK. Then you can wrap it into JNI classes, and use it from your Android app.