Generally in ORM and OOP , a persistent object refers to an object that exists (or persists) in the database
0
votes
0answers
7 views
C# keeping values of object pointers for further retrieving
Hope someone can help me with this.
I have a method (user_login) than prompts for a user to login and then generates and returns an invoice and a token.
The problem is that if the user has already ...
2
votes
1answer
64 views
How to querying the database inside the makeApplication function
I'm attempting to fork a non-web service in my Yesod application, and it needs to do some interaction with database. From this post I decided to put the service in makeApplication. I would like my ...
0
votes
2answers
25 views
Semi-persisting data for one screen only
what Iam doing is a simple game which when beaten, goes to a new activity, there it starts a AsyncTask and submits user score to the server, server responds with a array of scores (few better than me, ...
0
votes
1answer
41 views
Override Magento persistent/checkout/onepage/billing.phtml
I need to override Magento "checkout onepage billing" (Block and phtml).
I extended the block (Mage_Checkout_Block_Onepage_Billing) correctly but I can't replace the ...
0
votes
1answer
28 views
jquery mobile persistent navbar footer partly hidden
using jquery mobile 1.3.1. Created a persistent navbar inside footer, works ok but navbar is only partly shown. about half of the height is hidden.
here's the code, this is after the closing div of ...
8
votes
1answer
144 views
persistent: How do I get the I in ACID
Assume I'm doing the following steps in a transaction:
read some data A from the database
do some calculation based on it
write some data B to the database
Is it possible to make this transaction ...
0
votes
0answers
23 views
Presistent and non persistent connection computer networks
I have a question in presistent and non presistent network . Suppose I want to get one image from a website
If presistent
In those to I first open a TCP connection , then request the page , then ...
4
votes
2answers
87 views
What's the best way to do many-to-many in Persistent Yesod?
So my /config/models looks like this.
Person
name Text
Car
name Text
PersonCar
personId PersionId eq
carId CarId eq
UniquePersonCar personId carId
Assume the inputs in the database are ...
0
votes
2answers
28 views
Redis PHP Sessions do not persist
I'm using this package to replace cookied sessions so that my facebook application will still work.
https://github.com/nicolasff/phpredis
I need to not use cookies for sessions, but even with the ...
0
votes
1answer
53 views
validating through web service and saving password for application
I am developing java application which consumes with the web service, which then validates the user, I have the user enter his username and password. For using this application user required a valid ...
0
votes
1answer
13 views
Store persistent data in session
This might be super stupid. Shoot me, but I was in a strange mood yesterday and thought about the following:
What if I store webapp data in a persistent way, just by using sessions. So I store a ...
0
votes
1answer
38 views
Remove with entitymanager sometimes fails
I've a problem with removing persisted objects from my database.I have some tables with bidirectional relationships between them. I've a test for removing an object that is still referenced by an ...
0
votes
2answers
79 views
MATLAB - persistent variable
How to retain the value of a persistent variable in MATLAB after clearing it from memory?
4
votes
0answers
104 views
Persistent: CRUD TypeClass
I am trying to write a typeclass that simplifies writing a CRUD backend using persistent, aeson and scotty
Here is my idea:
runDB x = liftIO $ do info <- mysqlInfo
...
0
votes
1answer
62 views
Persistent Store save boolean as objects
I am developing a BlackBerry App and saving a lot of values as String and boolean to the Persistent Store. I am aware of the fact that String and boolean values do not get deleted from Persistent when ...
1
vote
1answer
46 views
persistent listview in Jquery Mobile
In jquery mobile you can have a navbar which has a class of persistent which makes the nav button which is chosen to highlight in a different colour. this indicates to the user where he/she is located ...
-5
votes
1answer
49 views
1
vote
1answer
110 views
Delete Persistent Store data when App is uninstalled/deleted
I have a BlackBerry application that starts (App load) with a Registration screen when the App is first installed. Later, the App will load with the home screen. Registration screen only appears on ...
3
votes
1answer
129 views
Android - JSON stored list contains objects that revert to superclass when app is exited, reopened
I have an ArrayList <GeneralTemplate> items
Throughout my program, I am adding Routines which are subclasses of GeneralTemplate i.e items.add(new Routine("Test")); and all is well.
Most ...
1
vote
1answer
81 views
Persistent Store - Save, Read and Overwrite data
I am trying to save 10 String values in PersistentStore in my BlackBerry App. The idea is to save the newest 10 items (String values) at any given time. When the first 10 values are saved and the 11th ...
0
votes
1answer
80 views
Store user settings in WCF service hosted by a Windows service
I've created a WCF/REST service that is hosted by a Windows service.
The service has no database behind it, because there is no need for.
But I want to save some general settings (list of allowed ...
0
votes
0answers
32 views
Is there an easy way to map a CollectionOfElement(Set/List…) property to a single database column?
Normally, I am using the CollectionOfElement annotation to map a collection of embeded object. This will always requires the creation of another table. When the master Entity contains two or more ...
1
vote
1answer
112 views
Running join on Maybe Relation
I have a model
Assignment
blah Text
....
and a model
File
assignmentId AssignmentId Maybe
...
and I want to get all the files associated with an assignment in a join query. I have ...
0
votes
2answers
35 views
Android : persistent data to save name and website from input user
I have two edit text for the name and the url.
After pressing "save" button I want to save this informations.
So I decided to use SharedPreferences to store it and it's ok.
SharedPreferences ...
0
votes
0answers
32 views
Dumping in-memory database to disk
I have created in-memory database(key-value pair) of my own. What is the efficient way to dump that to disk as a backup.
I am also doing periodic writes to in-memory database. and i need to provide ...
1
vote
0answers
46 views
Best practice to implement secure “remember me” for OAuth2? [closed]
As known, we only have OAuth2 parameters client_id, client_secret, access_token and refresh_token.
We could store "plain text" refresh_token in database and create cookies like this "What is the best ...
3
votes
1answer
113 views
Haskell persistent list
I am new to Haskell and wondered if there was a simple way of creating a data structure that I can add records to through successive function calls, and not lose the state of the structure in between ...
0
votes
1answer
79 views
Persistent: Convert Text to Key
I'm using persistent and persistent-mysql. I have a Monad SqlM
type SqlM a = SqlPersist (ResourceT IO) a)
Inside my function
testFun :: T.Text -> SqlM ()
testFun someId = ...
I can query ...
0
votes
1answer
68 views
rails persistent class variable
I am new to rails, and am stuck with the following problem:
I need a persistent class variable (I think) for a human readable customer ID.
The customer class is a subclass of a contact class in an ...
0
votes
1answer
153 views
JPA bulk insert if not exists
I have 3 entities - Player, Hand and PlayerHandStats. First two are regular tables, with ID as an PK. PlayerHandStats on the other hand has a composite PK (player_id, hand_id). Together they form some ...
0
votes
2answers
219 views
springMvc and Hibernate application “java.lang.IllegalStateException: persistence context reported no row snapshot ”
I am getting strange error on trying to delete the data record.create and update has no error but deleting gives following error. HTTP Status 500:
org.springframework.web.util.NestedServletException: ...
1
vote
1answer
60 views
Do we need to have persistant object to acheive singleton pattern in php
I am having singleton Database class in classes/database.php as mentioned in Singleton pattern in php and I am creating the database object in users.php using Database::getInstance() method then I am ...
0
votes
1answer
213 views
Forms Authentication Cookie Not Persisting on Server But does on LocalHost
I have been working on a web application that is setup on IIS 7 as one of several applications and web services operating under the DefaultWebSite. When developing on localhost, my ...
0
votes
0answers
33 views
HTML::FormHandler Moose Roles not clearing values in persistent form
I'm using HTML::FormHandler (with a persistent form) with Catalyst along with Moose::Roles so that I don't repeat fields across my forms. This works fine, except for the fact that once I submit a ...
0
votes
2answers
181 views
Persistent graphics WinForms
I've a WinForms application on wich i have to draw some lines between controls. These lines need to be persistent, so i override the form OnPaint() event.
The problem is that, the re-draw of the ...
1
vote
0answers
43 views
persistent with a model without fields (attributes) and mkMigrate parameters
First, if the model file has
User
ident Text
password Text Maybe
UniqueUser ident
Myuser
we can type
cabal-dev install && yesod --dev devel
and everything works on the first ...
1
vote
3answers
621 views
Using cookies to auto-login a user in asp.net (custom login)
i can't find on the net what i'm looking for so any help would be appreciated.
I have implemented a custom login form where the user enters his email and password to log in. I then query the database ...
0
votes
0answers
71 views
HTML::FormHandler persistent form clear default values
I'm using HTML::FormHandler to add and edit items. I'm doing the database side myself (inserting, updating, getting out default values,etc) and am using a persistent form in Catalyst. Because I'm ...
0
votes
2answers
161 views
Remember me Persistent Cookie in C#
I am doing a project in asp.net and tring to do Remember Me System. What I am trying to do is store ID of the user which is uniqueidentifier in cookie. But that cookie lasts only one day even though I ...
0
votes
1answer
80 views
yesod persistent: get list of entities from list of keys
suppose I have fooIds :: [Key Foo]. How would I get foos :: [Foo]?
I tried
do
foos <- map get fooIds
but it gives me
No instance for (MonadBaseControl IO m0)
arising from a use of `get'
...
0
votes
1answer
58 views
HTML::FormHandler persistent form class
I'm using HTML::FormHandler and I'd like to make my form persistent by making it a moose attribute in my controller class. In HTML::FormHandler's Manual Intro documentation, it says this:
FormHandler ...
0
votes
1answer
62 views
Haskell and postgresql-libpq
I've some issue with postgresql-libpq (Windows x32 OS).
I am trying to execute either one 'ghci -package postgresql-libpq' or 'yesod devel' in my the project directory I got the such error "Entry ...
2
votes
1answer
133 views
yesod persistent: get Entity value within hamlet
let's say my config/models file looks like this:
Pet
name Text
owner OwnerId
Owner
name Text
I can get the pet's name like this:
$forall Entity key pet <- pets
...
1
vote
1answer
232 views
I want to have persistent TCP connections with a POCO HTTP server
I am using POCO C++ lib version 1.4.3 in order to implement an HTTP server.
In my use-case there are only two or three clients and I would like to have persistent connections. The clients send data ...
3
votes
1answer
225 views
Matlab/C++: segmentation fault on parallel computing with C++ Mex persistent objects (cannot convert handle)
References for this post:
[1] http://www.mathworks.com/matlabcentral/newsreader/view_thread/278243 " Making C++ objects persistent between mex calls, and robust."
[2] MATLAB parfor and C++ class mex ...
0
votes
1answer
249 views
How to get generated ID after I inserted int to a new data record in database using Spring JDBCTemplate?
I got a very common question when I was using Spring JDBCTemplate, I want to get the ID value after I inserted a new data record into database, this ID value will be referred to another related table. ...
0
votes
2answers
180 views
JMS durable subscriber persistent messages don't persist to the database
I am using weblogic 10.3 .
I am trying to configure a durable subscription with persistent messaged backed by a jdbc store (in Oracle DB). I have a topic to which an MDB is listening as a durable ...
1
vote
1answer
100 views
Yesod/Persistent testing with bracket pattern
I'm very new to Haskell, so I'm having trouble absorbing all of the advanced features used in Yesod such as type instances and equality constraints. I am trying to implement the bracket pattern in ...
0
votes
1answer
133 views
Persistent android notification from service
How can I make a persistent notification, that will update every time the users sees it?
form the service
0
votes
1answer
119 views
sessionFactory bean fail on 'persistence' element
Firstly, I know there is a lot of íssues about creating sessionFactory bean, but unfortunately i havn't found any solution for me.
This is the whole exception in stacktrace:
...

