Re: [android-developers] Android - SQLLite

2011-06-12 Thread Sivaprakash
It is like this, - I am creating database in default way hence it will be created in my application private storage and other applications will not get access to it. Still I the user login as root user he would right? Anyways to prevent this? - What is the best mechanism to store secret data like

Re: [android-developers] Android - SQLLite

2011-06-12 Thread Kumar Bibek
Encrypt and Store. Use remote wipe, it would of course need a lot of work. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Sun, Jun 12, 2011 at 9:42 PM, Sivaprakash wrote: > Alright, but any way what is the best mechanism to protect my data? Even i

Re: [android-developers] Android - SQLLite

2011-06-12 Thread Sivaprakash
Alright, but any way what is the best mechanism to protect my data? Even if I loose my mobile someone should not gain access to my data. On Sun, Jun 12, 2011 at 5:52 PM, Mark Murphy wrote: > On Sun, Jun 12, 2011 at 1:37 AM, Sivaprakash > wrote: > > Thanks !! What should I do if I want to protect

Re: [android-developers] Android - SQLLite

2011-06-12 Thread Mark Murphy
On Sun, Jun 12, 2011 at 1:37 AM, Sivaprakash wrote: > Thanks !! What should I do if I want to protect my data in more secure way > meaning even if someone steels my memory card they should not gain access to > my data or immediately it should be erased ? Don't put the data on the memory card in t

Re: [android-developers] Android - SQLLite

2011-06-11 Thread Sivaprakash
Thanks !! What should I do if I want to protect my data in more secure way meaning even if someone steels my memory card they should not gain access to my data or immediately it should be erased ? On Sat, Jun 11, 2011 at 7:08 PM, Mark Murphy wrote: > On Sat, Jun 11, 2011 at 9:31 AM, Sivaprakash >

Re: [android-developers] Android - SQLLite

2011-06-11 Thread Mark Murphy
On Sat, Jun 11, 2011 at 9:31 AM, Sivaprakash wrote: > I want to persist few data into SQL Lite storage which comes with Android. > How the internal storage works because there is a possibility that other > applications can access my data? If you store your database in the default directory, that

[android-developers] Android - SQLLite

2011-06-11 Thread Sivaprakash
Hi I want to persist few data into SQL Lite storage which comes with Android. How the internal storage works because there is a possibility that other applications can access my data? Is there any way for me to set password for my database to prevent other apps to access my data? -- - Prakash.

[android-developers] android + sqllite : problem with accessing database

2010-10-29 Thread Mad Troll
I created database in sql lite with commands: sqlite.exe CREATE TABLE "android_metadata" ("locale" TEXT DEFAULT 'en_US'); INSERT INTO "android_metadata" VALUES ('en_US'); CREATE TABLE "myTable" ("ID" int); INSERT INTO "myTable" VALUES ('1'); . etc. i saved to file myDatabase.db

[android-developers] Android SqlLite DB?

2010-01-03 Thread to...@webpro.com
Hi, I am new to the Android Development process and I have on question. Is there a way to access a non local sqlLite server or do the db's have to be kept on the phone itself? If so what would be the best way to pull data from an external db? Write a server side app that pulls the data from the db