[android-beginners] Re: How to connect to mysql db directly without any middleWare servers ?

2010-03-29 Thread Torch


On Mar 30, 12:49 am, adel zalok  wrote:
> Hello ,
> I am trying to search for a way to be able to connect my android app
> to a mysql database without having to use a PHP server or any
> middleWare ,so Any Suggestions ?
>
> Thanks in Advance !!

JDBC works perfectly with MySQL Connector/J

However the Connector/J driver is GPL and your application must also
be GPL to use it. There are LGPL drivers for SQL Server through which
you can use in a closed source application.

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

To unsubscribe from this group, send email to 
android-beginners+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.


[android-beginners] LGPL Library Source Distribution in Marker Apps

2010-03-24 Thread Torch
When I use an LGPL library such as the jTDS JDBC driver in my
application and release it on the market, how am I supposed to include
the source code of the LGPL library?

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

To unsubscribe from this group, send email to 
android-beginners+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.


[android-beginners] execSQL SQLiteException near "?"

2010-02-22 Thread Torch
Why doesn't this work?
db.execSQL("INSERT INTO PARTIES (PARTY_NAME, PARTY_COUNT) SELECT
DISTINCT(PARTY), COUNT(PARTY) FROM ? WHERE (Year=?) GROUP BY PARTY
ORDER BY PARTY ASC", new Object[] { "Election", "2004" });

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en