0
votes
1answer
20 views

How to select an image from internal storage and insert it in SQLite?

When the user clicks a button in my app, he has to be able to select an image from the internal storage (sd card or tablet/phone memory). Then, I want this image to be stored in a SQLite database. So ...
0
votes
1answer
39 views

FILE_UNRECOGNIZED_PATH for an URI in firefox android extension

I'm developing an extention for firefox on android,it's my first attempt and I'm facing hard times, I'm trying to store some data on sqlite file, using the Mozilla storage API to access and store in ...
0
votes
1answer
16 views

Storage type for few data?

I'm developing an sms application and i want just a message and a phone number inserted by user to be stored in memory in order to be automatically retrieved the next time the user opens the ...
0
votes
3answers
246 views

Store an ArrayList of custom objects

I have an array of custom objects called AccActivity. public class AccActivity { AccData Data; AccData fData; AccData lpfData; int[] crossings; float[] sd; int type = -1; ...
2
votes
1answer
50 views

Please suggest data storage for single user application

I am looking for a data storage option for storing ECG (1000 samples /sec) and other patient data (e.g. blood pressure, body temperature etc - sampled at much lower sampling rate) in a querriable ...
-3
votes
1answer
66 views

New Apple Core Data Storage - Replacing SQL lite - How easy to make the change? [closed]

Apple has made a new rule , that now they dont accept apps that use local db that is SQL lite. Now they enforce to implement their own newly implemented Core Data Storage technique. How difficult is ...
0
votes
4answers
62 views

object c (iphone development) / difference of sqlLite and file system

i'd like to make some application that store data in device. so i want to use some storage. but there are two ways i can store my data. first one is saving them to file system by XML structure, and ...
0
votes
1answer
23 views

Row synchronization across tables?

I'm not sure how to search for this, so here it is. My own terms for this are "synchronized" and "deviated" database schemas. If there's an official term for all this I'd like to know it. This might ...
2
votes
3answers
565 views

Get databases directory for my app programatically

I want to use a "pre loaded" database in my app. There are tons of questions about this and most point to this blog article here or similars. So far so good. I just want to know if there is a better ...
0
votes
0answers
26 views

Storing text blobs separate from indexes and other metadata?

I have a set of several million (initial) text strings that I need to store. Most are under 50,000 characters long. I plan on parsing them before I store them and pulling out the attributes I wish to ...
1
vote
2answers
261 views

When to use Local storage on Android, and which one is recommended?

I am developing an application where I need to handle some data during the Application session. I do NOT need the data after application is killed or user manually logs out of the application. I am ...
1
vote
1answer
520 views

Saving coordinates in SQLite

I am developing for Cordova 2.0.0. I am testing my app on android 2.2. Now i got the code for getting a users position and then showing it in google maps with a marker. First my retreiving geolocation ...
2
votes
4answers
231 views

Store Game Statistics from Android App

I've got some basic Java experience and very basic Android app development experience (currently reading Android Wireless Application Development Volume I). I'm trying to develop an android app to ...
0
votes
2answers
246 views

How to get the value of SELECT COUNT(*)?

I've literally been trying all day to make Firefox to obey my will... I want : int c = SELECT COUNT(*) FROM ... I've tried executeAsync({...});, but I believe it's the wrong paradigm, as I want ...
0
votes
0answers
208 views

Android: Where to put Image files to access them later and add to SQLite

I have been jumping around the various posts on this site related to this question, but none of them really answer exactly what I am looking for. So if you find or know of a post that I may have ...
0
votes
1answer
329 views

iOS: Local Storage using Core Data not persistent when I power off the iPhone

I am currently developing my first iPhone app. I used Core Data framework with sqlite to persist data, and everything is working perfectly, except when I power off the iPhone, I noticed that all data ...
3
votes
2answers
863 views

Sqlite C++ Image to Blob wont store nothing

I googled a lot and couldn't find any solution. I'm currently writing myself an app in Codegear 2007 C++. I'm writing this app for my little kittens, its kinda' a dairy but I call it KittyBook. So ...
1
vote
3answers
317 views

What's the better method to store Android app's data — in SQLite or on the file system?

My app needs to store data on the phone, but I'm not sure what's the more efficient method. I don't need to search through the data or anything like that. I just need to be able to save the app's ...
1
vote
2answers
360 views

How to initialize SQLite file for Firefox add-on?

Is it possible for an SQLite data file used by an add-on to be one of the files accessed with data.url()? If so, how does one hand it off to Services.storage.openDatabase() If not, is it possible for ...
0
votes
1answer
117 views

When should I use NSKeyedArchiver instead of SQLite?

I'm writing an iPhone app, which needs to store about 10 records, each takes up 20-200 KB space. I need to choose between NSKeyedArchiver and SQLite. My questions are: Which takes up less space to ...
1
vote
1answer
1k views

SQLite library for Android

I was wondering if there exists a library for easy configurations of SQLite. The way you can create databases and tables etc. in Android has a lot of overhead. Does it exist a library or plugin of ...
0
votes
1answer
163 views

Read write SD-card List

I´ve been googling, I´ve looked at StackOverflow and see a lot of examples, but I can´t really get a hold of it. I´m new to android and learning how to read/write. Maybe one of you can help me with ...
0
votes
1answer
364 views

Using a large database in Android application

I'd like to write an Android application which will function as a dictionary (glossary). Therefore, I need a pretty big database (I assume about 200 thousand entries). As I am pretty new to Android ...
0
votes
2answers
1k views

Android change database path issue

I have a little problem with changing the path of my database in my custom databaseHelper.class. So in the beginning I put the database in default database folder in Internal Storage, but now I want ...
0
votes
1answer
977 views

SQLITE: PRAGMA temp_store = MEMORY

In all optimization guides people talk about pragma's like JOURNAL_MODE or SYNCHRONOUS, but I never read anything about the TEMP_STORE pragma? I would expect it has a large impact, so why is it never ...
0
votes
2answers
342 views

Best Database to store html-files (or files in general)

What is the best Database-Type (document-oriented,relational,key-value etc.) to store a html file (small sizes, ~max. 700kb) into Database? Currently I´m using sqlite3 with python, but it seems to ...
1
vote
1answer
320 views

Mozilla storageService: “Cannot execute statement :Error: Permission denied ”

(cross-posted on Mozilla: http://forums.mozillazine.org/viewtopic.php?f=7&t=2254955 ) I'm trying to work with the Mozilla storageService. In the following code, the user is asked to grant the ...
2
votes
2answers
372 views

Using SQLite in android based devices

Can we access SQLite DB from javascript(for offline use) in android based devices? I read here http://williamsportwebdeveloper.com/cgi/wp/?p=809 that we can access it in apple's devices. [Or is the DB ...
0
votes
1answer
271 views

android tags best practices and sqlite storing and select

What are the best data structure for tags (not nfc or html). Like tags that are used in stackoverflow to mark our messages. I was thinking of List < String > ? Then i need to store this tags into ...
8
votes
2answers
972 views

Handling full disk storage in Android

This question has evolved a bit from the initial one, here's a short info: I filled up the disk storage on the emulator and got it absolutely useless - the process android.process.acore is displaying ...
1
vote
1answer
564 views

The data disappear after moving the application on a real device in android

i create only a table from code but inside still empty. I instead insert data by pull a file out and insert by SQLite Browser when run the emulator then, put it back to the ...
1
vote
1answer
571 views

Where can i store default Image on internal storage in android

For example if i create app like travel guide and i would like to show the attraction place as a list i'm new to Android. I would like to create a ListView which provide image and some data in each ...
0
votes
3answers
175 views

what kind of file should i use in android to reference information that i stored?

I have created an android app that calculates the numerical values of word, and gives you a list of other words with the same numerical value. The way I have been doing it, is storring the words and ...
0
votes
1answer
235 views

handleResult called multiple times on executeAsync?

Following the Storage doc on MDC I've written something to read some history and show it in a textbox: var dbConnection = database.getDBConnection(); var getHistoryStatement = ...
0
votes
1answer
40 views

How can I protect a key against other applications?

Setup I have a SQLite database which has confidential user information. This database may be replicated on other machines I trust the user, but not other applications The user has occasional access ...
1
vote
6answers
889 views

serialize vs SQLite in Php

I want to store arrays in file. I triend csv (fgetcsv, fputcsv) but got tons of error related with locale. I cant continue using this. I worked with serialize but editing is very hard. Also there is ...
2
votes
1answer
441 views

Storage data is lost when closing an app or rebooting device

Save data: localstorage.setItem ('name', 'value'); When forced to close the app or reboot the device, all of the storage data are lost. Please help me to fix the problem.
0
votes
1answer
251 views

Weighing High-Volume Database Servers

I suppose this is partially subjective in that it's probably dependent on everyone's interpretation of "high volume", but for the sake of discussion, I'd like to approach this in a hypothetical way. ...
4
votes
1answer
438 views

Removal of SQLite Database when Application is un-installed

I'm creating an app that uses SQLite as a data storage on BlackBerry OS 5.0. When it is removed from a device, I'd like to be diligent and remove the database from the phone. Although I can seem to ...
6
votes
3answers
571 views

How should I store extremely large amounts of traffic data for easy retrieval?

for a traffic accounting system I need to store large amounts of datasets about internet packets sent through our gateway router (containing timestamp, user id, destination or source ip, number of ...
0
votes
1answer
1k views

How to store data accessible to both a web site and android application?

I’m developing an Android and web application that will function as a service (use the same data). My question is how should the data be stored to allow for both the web and the android application ...
2
votes
2answers
2k views

iphone best way to store images

I'm developing an app that needs to cache some images from the web the images are likely to be 100x100 I just need to know which is better: Store the images as files in the iPhone file system Store ...