The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
54 views

History saving and retrieving in iphone

I have an application in which a user can upload recorded audio or video or picks an existing from library, pictures clicked or picked. I need that user to be able to view, say the last 50 uploaded ...
0
votes
1answer
25 views

Saving and retrieving history iphone

In my app i am uploading various types of data such as image, audio, video, text. Now i want that user should be able to view the most recent 100 items uploaded even when he quits and reopens the app. ...
0
votes
1answer
58 views

Data that persist between activity and service (aidl)

I have spent 6 hours trying to solve this issue without success. I have 2 applications which communicate through a AIDL service. Here is the source code: Application A : protected void ...
1
vote
1answer
45 views

Android Activity Lifecycle and Singleton and mutual references persistance (memory leaks)

As I understand a singleton cannot be expected to hold persistent data in Android apps because an app may get destroyed and recreated several time in the app's "apparent lifecycle". This in itself is ...
0
votes
2answers
69 views

Saving an object to table that has relationship with another table using hibernate

I have 2 tables. Student (id,name,class_id)<br> class(id,name) student relates to class table through class_id after using hibernate and generate into object, I'll have 2 objects Student { ...
1
vote
2answers
76 views

How do I keep text type data on my app using some form of data persistence

I need to feed some substantial text into my first app which will change as the date changes (i.e every day) for a whole month. This data, I currently have it all on a .doc file which each day's ...
0
votes
1answer
96 views

Writing to Tape Drive Multiple Times using tar command

I am using the command tar -cvfE $TAPE_DRIVE $BACKUP_FILE to write to tape for the first time. It works like a charm. BUT, when there is already a file in the tape (older backup) I use the ...
-4
votes
2answers
121 views

Data persistence Alternative on Android [closed]

i would like to ask a recommendation about data persistence on android.. the thing is this: I have a small rest app that get a json data from a RESTful API that is de-serialized with jackson into an ...
0
votes
0answers
27 views

WSO2 Governance Registry - Service description and other fields not persisted

I am on version WSO2 Governance registry version 4.5.2. The fields like description entered for a Service is not persisted. After I make the changes and click save, the changes are not saved. From ...
6
votes
4answers
269 views

After how many seconds are file system write buffers typically flushed?

Before overwriting data in a file, I would like to be pretty sure the old data is stored on disk. It's potentially a very big file (multiple GB), so in-place updates are needed. Usually writes will be ...
2
votes
0answers
183 views

how to save and retrive a list from a file in Python?

I searched for a way to save variables into a file (making them persistent for other computations). I found some solutions like: http://stackoverflow.com/a/899199/1846113 but when I implemented it on ...
5
votes
1answer
2k views

A data persistence library for AngularJs

There is an alpha for Ember Js and also Persistence. Is there something similar for AngularJs (or it is in plan)? Maybe there is something that is framework independent? UPDATE I found these ...
2
votes
1answer
136 views

Saving image persistently in within App - iOS

Trying to select image using photo picker and save that image internally in apps folder. - (void) imagePickerController: (UIImagePickerController *) pickerdidFinishPickingMediaWithInfo: (NSDictionary ...
1
vote
1answer
620 views

Persisting app data with custom classes

I am creating a Windows 8 app that needs to contain two main types of data - List<Project> and List<User>, where Project and User are data models containing different types of data ...
1
vote
0answers
153 views

How do I find my C# panel controls?

I've lost my C# Panel Controls.... the asp for my panel is <asp:Panel ID="pnlSett1" GroupingText="Contra Account 1" runat="server" Width="400" > </asp:Panel> I've set up ...
0
votes
1answer
104 views

Updating core data entry

I'm working with core data to save scores for a game, and need help updating an entry when a score is beaten. This is where I'm at. I write the data the first time the app launches like this: ...
0
votes
4answers
544 views

write data structure into a file using binary mode

code looks like this: struct Dog { string name; unsigned int age; }; int main() { Dog d = {.age = 3, .name = "Lion"}; FILE *fp = fopen("dog.txt", "wb"); fwrite(&d, sizeof(d), 1, ...
0
votes
1answer
218 views

Data Persistence with CoreData [ iOS ]

Hi everybody i have a problem using CoreData Persistence, my problem is, when i launch my application i manage to add some data (from a form within the app) to my DataBase and display them with using ...
1
vote
1answer
126 views

javascript serialize object while preserving the inheritance

I have an object, say O = { a1: instace_of_another_object, a2:100, a3:200 } my a1 is inherited from another object say X. How do I serialize and then deserialize O in such a way that I ...
0
votes
0answers
115 views

Persistent data with Linq to Sql

I have the following problem: I add a record to sql through Linq default value (-1) in a counter field. After inserting a trigger runs amending counter field (which increases each sees a record is ...
0
votes
2answers
123 views

python pickle: what is it? when would i use it?

I get the idea that pickle is an object persistence library that lets me write out a data structure to disk, and reload it. Why/when would I do this vs the 'traditional' method of using a text file? ...
0
votes
2answers
685 views

Backbone.js data persistence

If I am building an application with backbone.js, what is the best tool or combo of tools to use for data persistence? So I cannot answer my own question for another seven hours so I am throwing the ...
1
vote
1answer
439 views

Binding a Winform to a Dictionary or Key/Value List

I have a Winforms application that dynamically instantiates external form objects for use in a configuration UI. Each dynamically-instantiated form is placed in a TabPage. I would like to create a ...
0
votes
2answers
210 views

Whatever happens to iOS Application's data persistence when the App gets deleted?

I want to keep some of the critical(and less memory consuming) data of my App(ex: licence key or user credentials), stored in the device. In normal scenario, when the user deletes the App from the ...
1
vote
3answers
1k views

Data Persistence with jqMobi

Well, I've sorted through the Google search and I've sorted through stack overflow and as of yet I don't have a good idea of how to do about this. I'd like to build a To Do program for the iphone ...
7
votes
2answers
223 views

What available Python modules are there to save-and-load data?

There are many scattered posts out on StackOverflow, regarding Python modules used to save and load data. I myself am familiar with json and pickle and I have heard of pytables too. There are ...
4
votes
3answers
476 views

Super light weight java persistence layer needed

I need a super light weight persistence layer for a java app I'm writing. I need it to be a stand alone app and so far I've played with Ammentos & Persistence4J. I like them both (especially ...
0
votes
1answer
400 views

How to load data to app widget after device boot

I'm trying to read data to my widget after device boot. My boot receiver is this: public class onBootReceiver extends BroadcastReceiver{ public static final String TAG = "BootReceiver"; private ...
1
vote
2answers
134 views

How to realize persistence of a complex graph with an Object Database?

I have several graphs. The breadth and depth of each graph can vary and will undergo changes and alterations during runtime. See example graph. There is a root node to get a hold on the whole graph ...
2
votes
1answer
196 views

iOS: best way to encode/decode memory intensive objects

I'm fairly new to iOS programming and am struggling to decide on what is the best way to encode memory intensive objects using the NSCoding protocol. I have a large number of Item objects. Each Item ...
2
votes
1answer
173 views

Which is best data storage type to store data received from server?

I have certain data that is received from the server, I call it History. Everytime I visit some website, I have to save the URL in the History list. The list will be displayed in a table later on, for ...
0
votes
2answers
150 views

Data organization into folder/file-like structure, objective c

I have about 20,000 NSDictionarys. Each dictionary contains three NSStrings. The dictionaries are organized in a folder-file like structure, i.e., I have about twenty main groups, and in each group I ...
1
vote
3answers
642 views

Delphi: Store data in somekind of structure

For a simulation program I'm working in Delphi 2010. The simulation isn't a problem but I need to use large collection of data which gives a problem. The data is available in excel sheets, so there is ...
1
vote
1answer
217 views

Application Data Persistence Framework/Library?

Our Java desktop application is managing several text files as edited by the users. Currently, those files are saved into the file system using in-house Java code. We'd like to move away from this ...
4
votes
3answers
305 views

Perl: does reassigning a new value to a scalar overwrite its current contents in RAM?

I'm using Perl for a security-related task and am wondering when a statement such as: $test = "new value" is executed, is the old value that $test created overwritten in RAM? If not, is there a way ...
0
votes
2answers
954 views

Persistent object in BlackBerry Application

Greetings, I have been trying to use the persistent object in BlackBerry Application. I am making a login page where i can save the username and password in the application. Below is the code i used ...
2
votes
1answer
119 views

When an app gets updated, is it just the binary that gets updated, and not the data files?

What exactly will get updated when someone updates their app? Does it update external data files in the bundle, overwrite them, replace them...?
1
vote
1answer
158 views

Correct practice for storing large images securely

What is the correct way to store large images on iOS, where "large" means > 1MB? Also, I want to prevent the user having the ability to access them via some kind of hacking.
1
vote
1answer
1k views

Size Limitation of NSUserDefault?

Is there a size limit to NSUserDefaults? What is it? I'm afraid that such a limit can cause my app to crash.
1
vote
1answer
263 views

Load into CoreData

I have created a window based application with the coredata framework included. I have edited my xcdatamodel, created a new entity, defined attributes and generated the managed object class file. When ...
1
vote
1answer
359 views

NSUserDefaults Help

I need to save a NSMutableDictionary in NSUserDefaults. I have searched the web for many examples, but have not received any ones that are relevant enough. Can somebody post a small piece of code ...
1
vote
1answer
2k views

Best Way to save array of objects in iPhone app.

I have an iPhone program with a table view. The table view gets its data from a NSMutable Array. I want people to be able to add data to that table, i.e add objects to that array. Using addObject and ...
1
vote
1answer
509 views

html5 canvas “graphics persistence” on reposition/resize

I noticed that when you move a canvas around or when you resize it, everything inside gets erased. I remember having a similar problem in windows forms applications in C#. Anyway, what's the best way ...
0
votes
5answers
567 views

Persistent data in Actionscript 3?

What packages and/or classes do I want to look into when I'm trying to make a Flash program that will run on multiple desktop and mobile platforms and I want to use persistent data? Edit: I am ...
0
votes
1answer
181 views

WPF app - recommended approach for persisting this type of data…

What would you recommended re an approach to persist data for the following situation: WPF application (desktop) Will be capturing information ever second (approx) and will need to store about 5 ...
1
vote
1answer
84 views

Does iphone 4 have automatic data persistence?

I loaded some app projects that I had been developing using the iPhone 3.1.3 Simulator. Now I got the 4.0 package, and for some reason when I hit the home button of the simulator to go the home ...
1
vote
2answers
253 views

Data persistance with BufferedReader and PrintWriter?

I have this simple application with a couple of classes which are all related. There's one, the main one, for which there is only one instance of. I need to save save and load that using a text ...
1
vote
2answers
184 views

How can i read back an object stored in a session?

First of all, here comes the load part. Structure MainStruct Dim Ans1 As String Dim Ans2 As String End Structure Dim Build As New List(Of MainStruct) ... ... ... Session("MyData") ...
1
vote
1answer
216 views

How can i preserve list contents on postbacks?

On the page load event of my webpage i fill the list of with the contents of the structure Structure MainStruct Dim Ans1 As String Dim Ans2 As String End Structure Dim Build As ...
0
votes
2answers
282 views

ASP.NET server data persistence

I'm not really sure exactly how the question should be phrased, so please be patient if I ask the wrong thing. I'm writing an ASP.NET application using VB as the code behind language. I have a data ...

1 2