Questions tagged [data-persistence]
256 questions
0
votes
1 answer
How can I make multiple copies of a docker container WITH configuration data?
I have a docker container with JIRA running in it. I have successfully configured JIRA with the correct workflows/fields. I now want to create a docker image of this so that I can propagate multiple copies of this configuration (yes, there's a…

Deanna
- 3
- 5
0
votes
1 answer
ASP.NET MVC persisting data across multiple wizard steps using database tables
What is the is the best approach to implement data persistence using database tables over several wizard steps in ASP.NET MVC?
At the moment we are using a session to persist alot of data across several wizard steps/views. We are experiencing an…

CodeMonkey
- 119
- 4
- 12
0
votes
3 answers
How to persist data to any controller action in a project?
I would like to have an auto-save for the forms on some of my website's pages. So I hook into window.onbeforeunload to submit forms. My issue is that I'd like to give them a success or error message with toastr but I don't know if something already…

David Carek
- 1,103
- 1
- 12
- 26
0
votes
1 answer
Persist values across the lifetime of an app - Pause / resume countdown timer
I want to create a countdown such that when the app is completely closed, the countdown timer is paused and saved. When the app is opened again, the countdown resumes where it left off.
My idea was to save the value "millisUntilFinished" in the…

Zekirak
- 191
- 6
0
votes
1 answer
Can not delete realm object on NavigatorIOS right click action
I am trying to add a single sign on feature in a react-native app. I am using realm for data persistence. It is working fine with sign in process and stores data when user is login in fist time. But I want to remove user object from local storage…

tmw
- 1,424
- 1
- 15
- 26
0
votes
0 answers
what could be the reason for the JDO key retrieved to be different from the one persisted?
In my google app engine application, i persisted jdo below for sometime,
package com.acti.JDO;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.annotations.Persistent;
import…

Karthik Amar
- 217
- 5
- 17
0
votes
0 answers
Saving images to Documents directory
I am trying to download images from Flickr and saving them to the Documents Directory.
The fetch results come back successfully and with each image url that comes back, I make another request to download the image.
From my debugging, the problem…

Ben Wong
- 691
- 2
- 19
- 29
0
votes
1 answer
Nhibernate for interops based database access
We have Oracle 11 as database for our third party server application. The interactions for db is only allowed through the interops DLLs provided by vendor. No direct access to database is allowed. We need to connect to the database using those DLLs…

VyshuRam
- 93
- 1
- 10
0
votes
1 answer
How to Save Voice Recordings in Database
I want to make a voice recognition android app. I want to know how to make database of the app. My app will be using some commands such as accept call for accepting a call, open'UC browser for opening UC browser and some other commands like that.…

Nishant Kumar
- 11
- 4
0
votes
2 answers
Saving High Score Data
I am extreamly new to programming. I am writing a simple game which gives you a score everytime you run the game. I am trying to figure out how to save the scores and recall them to a high score page. I am trying to figure out if saving to a…
0
votes
0 answers
Achieving data persistence for an array of custom type
I have been attempting to obtain data persistence for a Swift array of a custom type using either CoreData or NSUserDefaults. However, all of my attempts thus far have had issues saving the custom type to disk. I have used CoreData in a previous app…

JRystedt
- 215
- 2
- 9
0
votes
2 answers
android file system persistance
Hi Iam having serious issues try to persist some serializable objects to a file on the local android file system. Iam getting a Bad file descriptor error and I think it is to do with my methods for creating the file. the file and checking if the…

filthy_wizard
- 740
- 11
- 25
0
votes
1 answer
Keep Variables Data even closing the apps
I am new in C#, facing a problem right now.
Is there any other ways that I could store/keep my variables data even I exit my apps or until next start, beside than store the variables inside Properties > Settings ??

NewBieS
- 147
- 2
- 10
0
votes
1 answer
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 values per second effectively.
Will need to save data…

Greg
- 34,042
- 79
- 253
- 454
0
votes
1 answer
swift ios data persistence UIImage
I create a class as following and want to save array: [costCategory] to disk,
class costCategory : NSObject, NSCoding {
var name : String
var defaultValue : Int
var thisMonthsEstimate : Int
var sumOfThisMonthsActuals : Int
var riskFactor : Float
var…

Bog
- 37
- 5