The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
35 views

Keeping a PHP variable throughout several HTML pages/stages

I'm getting that the variable $email is undefined. I know that the emailParser() method works as it does everything it's supposed to do. How to I make it so that the variable $email persists so that ...
1
vote
2answers
64 views

GAE datastore will not persist owned 1:1 relationship within embedded JDO class

I have three @PC classes: @PersistenceCapable class A { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) @Extension(vendorName = "datanucleus", key = "gae.encoded-pk", value ...
0
votes
2answers
130 views

Spring Hibernate JPA not persisting cloud foundry

I'm working on a project using spring hibernate & jpa and I'm deploying it on cloud foundry. My problem is that when I call the Dao to persist my entity to the mysql database nothing happens. No ...
0
votes
2answers
49 views

Java web application storing large objects available best options

Java - spring - webapplication I have a web application which has wizard based processes to create complex entity and, there are atleast 10 screens to complete one process but problem is at any step ...
1
vote
1answer
89 views

Persistence with embedded forms

I am trying to set up some embedded forms using this guide. I have two models set up in my application, Lesson and Evaluation. Each Lesson can have multiple Evaluations. I have a form set up where ...
0
votes
2answers
45 views

Implements save (or commit) and rollback methods to a Map

I'm searching for a fast and convenient way to add save() and rollback() to a standard Map. Let's say i have an object 'table' of class Table which in turn has a private Map called 'rows'. What I'm ...
0
votes
0answers
56 views

Any experience with Karvonite NoSQL document database / persistence store for .NET?

Has anyone used Karvonite as a persistence store for .NET desktop applications? I see they just came out with a new version 5 in November, 2012. Looks very promising: mapping of data model looks ...
0
votes
1answer
111 views

Why am i getting NullPointerException when i try to save image?

I am trying to save image in my app. But i am getting null pointer exception when i try to persist image object. Here is my Image class: @PersistenceCapable public class ImageObject { ...
2
votes
1answer
98 views

Persisting state in the android Application class

I am developing an Android application consisting of over 10 activities. I have some state objects that I access in almost every activity and for this purpose these were implemented as global static ...
2
votes
1answer
221 views

Clientside Caching C#

My wpf client is loading a lot of standing data at startup from the server. So, I want to implement a caching strategy at client side. I know about the new System.Runtime.Caching namespace in the ...
1
vote
3answers
320 views

Persistence framework for JavaScript / Google v8

Is there any kind of persistence framework for JavaScript and/or the Google v8 engine? I want to store (serialize) a whole graph of objects (including, e.g., functions) and re-load it later. JSON is ...
7
votes
5answers
570 views

*large* python dictionary with persistence storage for quick look-ups

I have a 400 million lines of unique key-value info that I would like to be available for quick look ups in a script. I am wondering what would be a slick way of doing this. I did consider the ...
1
vote
1answer
280 views

How can I “map” in ORMLite a base object that all Database entities extend

I have an object that I call BaseObject which all classes that are persisted extend. This class has an _id field, dateCreated, dateModified, etc.... The database tables that correspond to all objects ...
0
votes
0answers
60 views

Persistence/Entity Framework

Assume I define a complete domain model as POJO's. In PHP it is trivial to serialize objects however when the time comes to persist the object model and I wish to submit to a REST service instead of ...
-1
votes
2answers
56 views

SQLite What platforms does it work on? [closed]

I want to use SQLite for object persistence in C++ for making games (I'm thinking of using SDL). Anyway how cross platform is SQLite? It works on Windows, Mac, Linux, and Android right? How about ...
2
votes
1answer
1k views

When are Active Record objects in has_many relationships saved?

I'm using Rails 1.2.3 (yeah, I know) and am confused about how has_many works with respect to object persistence. For the sake of example, I'll use this as my declaration: class User < ...
0
votes
1answer
112 views

Persistent Objects in Wordpress/PHP

I would like to create a set of persistent objects that load their state from the database and are then persisted in memory for Wordpress/PHP page loads to use as cached memory objects. I would ...
0
votes
2answers
104 views

Keeping history of items without using a database in java

I have a small java utility application which performs tasks on remote computers. This app will provide user with a dropdown/combobox where they can enter ip address or hostnames for the computers ...
2
votes
2answers
117 views

persistent vs immutable data structure

Is there any difference in a persistent and immutable data structure? Wikipedia refers to immutable data structure when discussing persistence but I have a feeling there might be a subtle difference ...
0
votes
1answer
136 views

java hibernate runtime exception

I'm trying to use Java Hibernate. I tried to run the HelloWorld example from http://www.manning.com/bauer2/chapter2.pdf. But I have run into some trouble. The jar version I'm using is not the same as ...
1
vote
2answers
290 views

Closing children windows from Javascript

I have been searching high and low for a solution to my problem and can only find pieces of the puzzle with no way to connect them. I have a window (which it self is a child of the main window) that ...
1
vote
1answer
131 views

For persistent data in Terracotta, how to evolve classes?

We are considering Terracotta for our next project. I am intrigued by its potential to provide data persistence without the need for a separate DBMS. (See also On using Terracotta as a persistence ...
0
votes
2answers
278 views

On android how would I create a class that extends Location Listener so that both my main activity and Intent Service can use the same object?

So I'm planning create an app that needs to obtain the user's location and it's going to have a class called LocationController that implements the LocationListener interface. What I want to achieve ...
0
votes
1answer
19 views

Is this a known format for persisting an object?

I am analysing a system that persists HTML form input data like this: a:2:{s:4:"form";a:1:{s:10:"labelWidth";i:150;}s:6:"fields";a:4:{s:15:"disp ... Does anybody know if this is a known, documented ...
2
votes
4answers
157 views

Saving any kind of object in relational database

It may be a little fancy but is there any pattern or something to store any kind of Object in Relational database (not nosql) in optimal way? for example in none optimal way: class Person{ ...
5
votes
2answers
156 views

Python: strategies for persistently memoizing functions with function arguments?

I have written a little class to persistently memoize some expensive functions that do various statistical analyses of random networks. These are all pure functions; all the data is immutable. ...
0
votes
1answer
110 views

Internal storage of Classes and Structs

I want to use pointer magikry to save a C++ class using the following method that writes byte data into a file: result Osp::Io::File::Write (const void *buffer, int length); Parameters: buffer — ...
0
votes
1answer
121 views

Cross Browser, Object Persistence Library for Client Application

I'm creating a client based application in HTML Application (HTA) and I would like to know if there's a object persistent library similar to python's shevle that meets the following criteria: Should ...
0
votes
2answers
176 views

Ruby daemon process to keep objects alive for transient Ruby instances

Does Ruby offer a mechanism to share variables (more importantly, class objects and any other data abstractions I deem useful for that matter) between different running Ruby processes? For example if ...
1
vote
2answers
462 views

How to keep an object “persistent” in a C# dll?

I have written a dll in C#, offering a class for use. The dll is called by a C program that I have written. (It’s a plugin to some program. I have to write the plugin’s code in C, but I want to use ...
2
votes
1answer
138 views

How to persist an object in Rails

I'm implementing a kind of ruby online terminal (just for practice). I am using AJAX from a simple js web application to call a method that evals the input of the "terminal". To avoid problems with ...
0
votes
1answer
147 views

How to change a single querystring parameter, possibly via a control action?

In the last three days I've struggled trying to find a way to accomplish what I though was supposed to be a simple thing. Doing this on my own or searching for a solution in the web, didn't help. ...
0
votes
1answer
65 views

object-database: Changing the class hierarchy

I am reading me into object oriented databases right know and have to make a little presentation. Something I don't get and nowhere can find is following problem: What happens with the data of the ...
1
vote
0answers
34 views

Persistence and faces

I have been learning / working on J2EE projects for about 3 months now and this is what i know.. How to create a database in mysql (In truth i have been doing that with perl and php for 12 years) I ...
5
votes
2answers
2k views

How should I do post persist/update actions in doctrine 2.1, that involves re-saving to the db?

Using doctrine 2.1 (and zend framework 1.11, not that it matters for this matter), how can I do post persist and post update actions, that involves re-saving to the db? For example, creating a unique ...
1
vote
3answers
1k views

What does a EClassNotFound raised at runtime really mean when the class in question is there at compile and link time, and there explicitly in code?

I have a runtime error happening in the rtl Streaming in of a form, causing an exception EClassNotFound to be raised, while doing TReader.ReadRootComponent. The particular error message is "Class not ...
0
votes
1answer
164 views

Issue with persisting specific relation with Doctrine2 ODM

I am using Doctrine 2 MongoDB ODM, all working fine except 1 specific relation. What's obscure is that I have seemingly identical relations in the project and they all work just fine namespace ...
0
votes
1answer
44 views

Why sometimes my object attributes not updated?

I am using JDO and i am new in that. In every servlet i am creating a new persistent manager and closing it in the end. In most of my servlets everything works fine. but in one of my servlet some ...
0
votes
2answers
117 views

Is it ok to have a non persistent variable in an entity?

When using an ORM, is it breaking some kind of good practice to have a model class with a few non-persistent properties, which are only used for calculations, and then can be safely dropped? Let's ...
5
votes
3answers
418 views

Python: how to share an object instance across multiple invocations of a script

I'm use a library which provides a python interface to an external program. This allows me to create: foo = Foo() The code above starts a new instance of the Foo program that I can control from ...
5
votes
1answer
3k views

Do I ever need to explicitly flush GORM save calls in grails?

I have a strange situation which appears to indicate a GORM cacheing problem //begin with all book.status's as UNREAD Book.list().each { book.status = Status.READ ; book.save() } println ...
0
votes
2answers
767 views

Save object with Hibernate annotations?

I just wanna ask know how its possible to create object after creating your database with Hibernate annotations? When i run the code below, it creates the database with the objects, but when i run ...
0
votes
1answer
84 views

Business Entity contains persistence functionality

Is there a name for the pattern in which business objects contain their own persistence mechanism? For example: public class Customer { public string Name { get; set; } public int Id { get; ...
2
votes
2answers
225 views

android application/activity life cycle: when should we save to flash?

I have an app that is composed of many activities. Each activity can modify the project in some way. I'm saving this project to flash by serializing a few objects and saving them to flash. Now, If the ...
0
votes
1answer
314 views

What's the difference between an ORM and a Persistence framework?

I'm reading up on OOP design patterns and framework design and find myself a bit unshure about the difference between the terms ORM and Persistence framework. Is an ORM a type of PF? What are the ...
2
votes
2answers
4k views

Hibernate @Id @GeneratedValue annotation doesn't recognise increment ID generated by DB2 Database

Inserting a second record using Hibernate 3 into DB2 v9.x where a column has a Unique primary key column Id generated by DB2 doesn't work with persisting my Hibernate entity. Inserting the first ...
6
votes
2answers
5k views

MVC3 multi step form - How to persist model object

I have a multi step form which uses one model object and I need to persist it between the steps. The object gets saved to the database only after the final step. I have seen people suggest using ...
2
votes
1answer
440 views

In JDO (AppEngine), after persisting an object, how can i get the key of that particular object?

When I persist an object to the datastore, when (and how) can I get the key of that particular object that I just persisted? So for example, if I have: @PersistenceCapable public class Employee { ...
1
vote
2answers
1k views

Maintaining Android Activity's data: onPause, onSaveInstanceState, onRetainNonConfigurationInstance

I have an application Activity that in onCreate loads an XML file from a service using an AsyncTask. The XML is parsed into an ArrayList. When I switch to a different activity and then back to the ...
1
vote
0answers
477 views

EF 4: Storing context object in Request object, is it disposed of?

I am writing a MVC3 application, using NInject DI and repository pattern. Ninject is set up so that the repositories have a per-request lifetime. I am putting the context object into the Http Request ...

1 2 3