The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
30 views

Best way to Store continuous data in android

In my android application, There will be one service which will be generating some data(statistics) like (int, time, long, boolean). So question is what is the best and optimal way to save that ...
0
votes
0answers
16 views

Best traversal method for QR code data pattern (python)?

I am trying to make a QR code reader and I got success in effectively decoding QR code patterns for version 2(tested and gave fine results with many version 2 samples) only. But I found version ...
2
votes
2answers
84 views

Data storage library for C++

I would like to use some tiny C++ library in my code, which would allow to do something like: DataStore ds; ds.open("data.bin"); int num=5; std::string str="some text"; ds.put("key1",num); ...
1
vote
0answers
54 views

Writing to Internal Storage - File Not Found

I have read a ton of articles on writing to the internal storage of an android device, and I need some help figuring out what I am doing wrong. In the main activity of my app, I read a value from a ...
0
votes
1answer
49 views

Data limit of $.data? [duplicate]

I am searching for the solution to store the large amount of data in the client side. But i couldn't figured out the proper way due to some limitations of some techniques. I came to know about ...
-1
votes
1answer
75 views

Store data in cloud [closed]

I am New at Windows 8 app development. I want to create an app which stores data in skydrive like this <person> <name>XYZ</name> <geb>01.01.1992</geb> … ...
1
vote
1answer
733 views

How long will Web SQL Database remain in the browsers?

I am currently using web SQL database in my chrome and safari browsers. This runs pretty well for my requirement. The code is up and running and makes use HTML concepts. I have done some R&D and ...
1
vote
0answers
27 views

Create and store user defined form templates

I'm relatively new to IOS programming in Xcode, so I was hoping to get a little help here. At the moment, I'm working on an application that gives the users the ability to create their own form ...
0
votes
1answer
31 views

NSDictionary and NSUserDefaults as data storage?

App Overview: A user can perform Internet speed tests and other types of test with varied results. Typically results for a test are stored in NSArrays and NSStrings. Aim: I'm trying to create a ...
0
votes
0answers
42 views

How to reference from multiple plists in ios app

I have seven total plists that I created in my app and would like to know how to access each one separately so that I can make the dictionaries within them update to the master plist. How do I call ...
1
vote
0answers
44 views

Android. Object persistence. Finding fastest way: SQL, StreamCache, XML File?

We are creating media app and our current task is to store user media collections. In general, media collection is parsed part of the xml(not the entire xml file) file. So currently we are looking ...
1
vote
2answers
95 views

Reading an xml file in android

I have saved the IP configuration of the server in a xml file in /Simulate/Configuration.xml in my android internal storage Configuration.xml <?xml version="1.0"?> <IPconfig> ...
0
votes
1answer
39 views

PHP/HTTP non non-stateless

PHP uses cookies, sessions or databases (and ORMs) in order to remember data (so they are not lost after single HTTP request). However, in Java (I mean servlets etc.) there is another solution: in ...
2
votes
1answer
64 views

The best way to keep large amount of data on windows phone?

I'm making application on Windows Phone, and I need to keep photos in my application. They will be around 1-1,5 GB, but I can't download it while application is starting. I would like to make them ...
0
votes
1answer
70 views

Fast way to store data and extract them

I want to find a way (in PHP) to store temporary data in quickly, to be able to extract them quickly also. For now, i'm using a mysql database, but the response time is too long. Here's what i'm ...
0
votes
3answers
40 views

Storing lists: in files or MySQL?

Which is the generally better way of storing lists of the following type: array( 'category'=>array( 'key'=>'value', 'key'=>'value' ), 'category'=>array( ...
1
vote
0answers
54 views

On-disk Data Structure/Library for Logging

Is there a library or engine that I can embed in my system for writing out append-only data? In particular, I need something that can handle binary data, and which handle entry lookups (preferably ...
1
vote
1answer
171 views

Write an ArrayList to SD-Card

When my application starts it connects to a database and downloads some data in XML format. This is the layout: <Customers> <Customer> <name>...</name> ... ...
0
votes
2answers
88 views

Android: easiest way to create a FIFO data storage?

I want to store data in the following format: file_name(string) | full_path(string) | file_type(string) Besides having that format, I want this storage to work by FIFO method: inserting a new row ...
1
vote
1answer
78 views

Data Container Quick Access

What is the best way to store data (no serialization - just using a Stream + BinaryWriter/BinaryReader) in this scenario for quick and easy access to files. DataContainer contains 10 files each files ...
0
votes
1answer
74 views

How to store Report's descriptions in CodeIgniter project?

I'm writing web project which consists of layout page with different types of reports. I'm using tooltip ui so customers can read the description of each report when they hover it, which consist of ...
1
vote
1answer
120 views

can I get iOS 5.0.1 Simulator

I am implementing the do-not-backup attribute for my app for iOS 5.0.1 and above. And as Apple suggests, there is a different way to set the key for iOS 5.1 and above. I can test it for iOS 5.1 and ...
3
votes
1answer
88 views

Do I have to follow iOS Data storage guidelines even when iCloud is not enabled for my app

I have created an app ID that does not enable iCloud. But does that mean that I have to follow iOS Data Storage Guidelines to get my app approved for appstore? I am using App's Documents Folder to ...
2
votes
2answers
633 views

Storing a BMP image in a QR code

I'm trying to create (or, if I've somehow missed it in my research, find) an algorithm to encode/decode a bmp image into/from a QR code format. I've been using a guide (Thonky) to try to understand ...
2
votes
2answers
3k views

Windows 8 local storage

I have searched around a lot but have not found much of anything in regards to local storage for Windows 8 metro apps. Does anyone know of any easy way to create a local storage DB with basic save() ...
1
vote
1answer
90 views

Storing file information

I'm currently working on a backup solution, once the files are synchronized I'd like to make also a list of the files/directories ( their permissions/uid/gid ) list and save it somewhere. Currently ...
1
vote
1answer
160 views

Data storage in Android with GAE?

I'm new to Android, but I'm ultimately hoping to create a social networking app. I'm trying to figure out the best way to store user data (profile field responses, etc). I'm planning to use Google ...
0
votes
0answers
42 views

Encapsulation and store variables in globalscope PHP?

When i say 'Encapsulation' you think of storing data in a class. Thats right. I wanna use the Encapsulation method and store some values like maybe custom error msgs to be created in a.php $a = new ...
1
vote
1answer
116 views

Application lifetime persistent storage in android application

I want my application to store some data for lifetime of application. I know that there are 4 types of data storage in android. 1: Shared Preference 2: Internal Storage 3: External Storage (I don't ...
0
votes
1answer
277 views

iOS: plist data not persistent/Trouble finding file

I've done quite a bit of research in to other people with similar problems, solutions provided for them have failed to resolve my issue so I'm thinking its something obvious that's missing, or I am ...
0
votes
1answer
483 views

Best way of storing and retrieving files - BaaS or S3

We are facing the following dilemma: Our mobile client application will be user-authenticating through a BaaS (Backend-as-a-Service) and will then need to send a file to the cloud - specifically an ...
2
votes
1answer
334 views

Ways to use own data-storage in popular BaaS

We are developing an application which requires the client (mobile device) to send files of size 5MB or more to the server component for processing and we would like some advice on the following: ...
1
vote
2answers
382 views

Most efficient way to save data on iOS Apps

I am creating an App containing multiple UITableViewControllers. So far I have made all of them connect to my different JSONGetStuff.php files, then getting the data from my database with a JSON ...
9
votes
1answer
168 views

What ways are there to acheive persistent, shareable storage in html & javascript alone?

Edit: Let me try to clarify with a use case. I would love to be able to run a simple chat-box on an html/javascript page without running my -own- server. I can write the chat application's ...
0
votes
2answers
512 views

Should i write sqlite database file to Documents directory or Library/Caches?

I have read the Data Storage guidelines of Apple and am really confused as to where i should keep the sqlite database files i am creating in my app. I want to read from the sqlite files even when the ...
0
votes
1answer
68 views

Ways to save a lot of text and images in Android

Short version at the bottom I'm working on an android app for a computer game, Heroes Of Newerth. A part of the apps functionality is to list all the heroes in the game. Each hero has: a short ...
0
votes
0answers
54 views

Where to store analytics data from apps

What is the recommended data store for analytics data - dynamoDB, Amazon RDS or something else? Please note that we have structured data (which points us to RDS), but we want it to scale as the number ...
2
votes
3answers
205 views

Safely Storing sensitive data client side

Back Story I work at a small-mid size company and we are reworking our customer facing accounting portal and my manager wants to make single click payment option with the Credit Card info stored in ...
2
votes
1answer
519 views

Most efficient way to store and retrieve large amounts of text data in android

I wanna write an android application which will store and retrieve large amounts of text data. I wanna store text in paragraph wise.I need to manipulate this text data in an efficient way. What will ...
0
votes
1answer
47 views

Being able to keep track of user's data after my app has been closed

I have created an app for the iPhone where I have two view controllers. Page 1 has a UIImageView and a UILabel, and Page 2 has a UIImagePickerController that allows the user to update the image on ...
0
votes
0answers
51 views

How could I store images from my iPhone app, so that they can be accessed by all its users?

I'm trying to create an iPhone application with a feature that allows its user to view a photo library, and even upload their own photos to said library. I looked into GDataPhotos, Flikr, and ...
0
votes
1answer
55 views

Data Storage for Multilingual Brochure App

I'm writing an app version of a printed brochure. The brochure comes in multiple languages. In printed form (for a single language) it's only about 12 pages long. The main screen on launching the app ...
0
votes
3answers
473 views

Alternative ways to load / save data - without serialization?

Ok. I know how to use Serialization and such, but since that only applies to Objects that's been marked with Serialization attribute - how can I for example load data and use it in an application ...
-1
votes
1answer
97 views

What's the best classification method for capturing packets in heavy traffic

I want to capture packets from a crowded network and classify it by user request. I use java and jpcap for capturing packets. now I'm using array threads for each req packet. it's realy slow and there ...
1
vote
6answers
2k views

Apps must follow the iOS Data Storage Guidelines or they will be rejected

i have developed an app that can download mp3 files (nearly 6 to 8 mb of size) from online and stored in NSDocumentDirectory. my app get rejected today and says that "Apps must follow the iOS Data ...
-1
votes
3answers
69 views

Which is better option for saving information in Android? [closed]

I'm considering about two data types for storing information in Android. The information will be structured e.g. each entry will have (time, date, type, value, comment) values and I thinking about ...
0
votes
1answer
195 views

Getting user input from dynamically created views

I've this problem of not being able to get the user input from the second inflated view. I've upload an picture to this site http://postimage.org/image/b4syhdzrr/ as I'm still not allowed to post ...
0
votes
0answers
102 views

Discussion - Most efficient method of storing images for web dev [ASPNET MVC] [closed]

Image management seems to be a bit of a pain in web development. A few problems I came across are listed below: Layout images vs Content images Images for jQuery The default image directory with ...
0
votes
1answer
257 views

Where does GAE store permalinks?

So I have the following code GAE code in python and it is a little long but basically it allows a user to post to a blog and then saves each blog post to a permalink which the user is redirected to ...
2
votes
1answer
238 views

WP7 - Best way to store secure data

I am curious, what is the best way to store data on Windows Phone 7 in a secure way like a password etc. I explored the ProtectedData option, but is this the best way of storing(encrypting) data? If ...

1 2 3 4 5