[android-developers] Re: arraylist storage in sqlite

2009-11-17 Thread bharath
i want to save the array values in single row and single column... then how can i insert [ syntax] into database -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: arraylist storage in sqlite

2009-11-16 Thread Haravikk
On Nov 16, 12:49 pm, bharath gunturibharathmo...@gmail.com wrote: can any one tell me how to store and retrieve  arraylist in/from sqlite ArrayListDouble results = new ArrayListDouble(); Hmm, it's not an easy question to answer as it depends really on how it's used. Best practise is probably

[android-developers] Re: arraylist storage in sqlite

2009-11-16 Thread Paul Turchenko
Just have table with 1 column. Store values there. SQLiteDatabase has all necessary APIs. On Nov 16, 2:49 pm, bharath gunturibharathmo...@gmail.com wrote: can any one tell me how to store and retrieve  arraylist in/from sqlite ArrayListDouble results = new ArrayListDouble(); -- You received