Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
441 views

.NET Object persistence options

I have a question that I just don't feel like I've found a satisfactory answer for, either that or I've not been looking in the right place. Our system was originally built using .NET 1.1 (however ...
6
votes
4answers
173 views

Is my idea for an object persistence library useful?

First, I apologize if this is not an appropriate venue to ask this question, but I wasn't really sure where else to get input from. I have created an early version of a .NET object persistence ...
5
votes
4answers
460 views

Are there any frameworks/libraries for Delphi that come close to the functionality offered by Bold/Eco?

Not sure what happened to Bold/Eco during the Borland/Codegear/Embarcadero transition but I sure miss it in the newer versions of Delphi. Anyone know of a framework that comes close? If not, maybe ...
5
votes
6answers
3k views

Classic ASP Store objects in the session object

I am new to classic ASP and I need to code a web application in classic asp because the customer wants it to be in classic asp. :( Anyways! here is my question: When I have a object of a class ...
4
votes
3answers
155 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 ...
4
votes
2answers
2k 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 ...
4
votes
3answers
504 views

Memory-Mapped Files & Transparent Persistence of Java Objects

Greeting All, I want to achieve transparent persistence of Java objects through memory-mapped files (utilize the OS paging/swapping mechanism). My problem is: how can I move a Java object to my ...
4
votes
5answers
1k views

DTOs vs Serializing Persisted Entities

I'm curious to know what the community feels on this subject. I've recently come into the question with a NHibernate/WCF scenario(entities persisted at the service layer) and realized I may be going ...
3
votes
3answers
383 views

Is it possible to create statefull web service in C#?

I have now something like this: public class Service1 : System.Web.Services.WebService { [WebMethod] public string Method1() { SomeObj so = SomeClass.GetSomeObj(); //this executes ...
3
votes
3answers
132 views

How to save big “database-like” class in python

I'm doing a project with reasonalby big DataBase. It's not a probper DB file, but a class with format as follows: DataBase.Nodes.Data=[[] for i in range(1,1000)] f.e. this DataBase is all together ...
3
votes
2answers
431 views

Optimal way to persist an object graph to flash on the iPhone

I have an object graph in Objective-C on the iPhone platform that I wish to persist to flash when closing the app. The graph has about 100k-200k objects and contains many loops (by design). I need to ...
3
votes
3answers
984 views

Runtime-changeable ORM / OPF Object Persistence Framework for Delphi

One of the projects I'm working on involves a module that needs to allow end users to create what essentially equates to, their own "object classes," storing data structures / record types that they ...
2
votes
1answer
57 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 ...
2
votes
1answer
321 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 ...
2
votes
2answers
794 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 ...
2
votes
4answers
157 views

How to save 100 objects to server with ajax and php?

Let say I have a page with 100 objects and each page is around 700 bytes when converted to json. In order to save the objects to the php based controller I have the following options. Option 1 For ...
2
votes
1answer
517 views

nHibernate Exception: Unable to cast object of type

I am running into an nHibernate error while saving an object. The classes involved are: interface IHardwareSpecification { //fields and methods } public class CPUSpecification : ...
2
votes
2answers
187 views

C++ object persistence library similar to eternity

I'm looking for a C++ object persistence library to replace the Eternity library that I've been prototyping with for about a day. The Eternity library came up short. I've created an object hierarchy ...
2
votes
1answer
364 views

Android object persistance: Ektorp and CouchDB

Hi: Has someone experience with object persistence on Android by using ektorp and CouchDB? Including the 'Simple Logging Facade for Java (SLF4J)' jar is necessary to try this out. I tried to get it ...
2
votes
1answer
72 views

How does persistence change object architecture?

I'm working with classes in PHP. When I'm writing a class, I'm always thinking "This object is basically a one-off; it's not going to last beyond the page load." Consequently, all the logic in my ...
2
votes
1answer
218 views

JPA and unique fields

I have two persistence objects in my app: Things and tags attached to things. The app can generate collections of things with tags attached. Tag objects have a unique name (it doesn't make sense to ...
2
votes
4answers
580 views

Data denormalization and C# objects DB serialization

I'm using a DB table with various different entities. This means that I can't have an arbitrary number of fields in it to save all kinds of different entities. I want instead save just the most ...
2
votes
1answer
488 views

BlackBerry persistent object /storage nuance question

I'm using PS to store data in my app. I think I have a misunderstanding of how PS works. If anyone could tell me how to make it so that the bill I retrieve from PS is unencrypted as opposed to the ...
2
votes
2answers
230 views

Need to update the primary key on existing objects in GAE Java

I am building a web app using GAE Java. I have a class that uses a Long ID (generated by appengine) as its primary key. I now want to create a new class that would be the parent class to this ...
2
votes
2answers
438 views

NHibernate: Many-to-One - *Must* You Load the Parent Object?

Assume the following entity classes: public class Player { public virtual int ID { get; set; } public virtual string Name { get; set; } public virtual Team Team { get; set; } } public class Team ...
2
votes
1answer
341 views

Grails: GORM and BitSets?

I don't see anything in the official documentation about unsupported persistence data types, so I'm working under the assumption that types available in the Groovy language should be handled. However, ...
2
votes
5answers
707 views

With Python, can I keep a persistent dictionary and modify it?

So, I want to store a dictionary in a persistent file. Is there a way to use regular dictionary methods to add, print, or delete entries from the dictionary in that file? It seems that I would be ...
2
votes
2answers
164 views

Why would you “store instances of the class in the database as entities”?

I'm trying to understand a line from the Google Datastore API which says: JDO uses annotations on Java classes to describe how instances of the class are stored in the datastore as entities, ...
2
votes
1answer
324 views

Is there a preferred method of database management/object persistence on the iPhone?

I've seen several approaches, and each seem to have significant plusses and minuses. I'm learning iPhone development, I'm building a relatively simple app, which, at it's core, is really not much more ...
2
votes
7answers
647 views

Object persistence strategy for desktop application

I am developing a Java based desktop application. There are some data generated from the application object model that I need to persist (preferably to a file). There is also a requirement to protect ...
1
vote
2answers
94 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 ...
1
vote
3answers
262 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 ...
1
vote
2answers
110 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 ...
1
vote
1answer
192 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
715 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
296 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
vote
7answers
175 views

C# Persisting Objects Between User Sessions Without using a database

I'm making a simple Winforms that reads in a text file and does some parsing to put it into C# objects that are then manipulated by my app. I would like to parse the file once. Then go away for a ...
1
vote
1answer
110 views

Lambdas, closed-over variables, display classes, serializability, and prevalence layers

I've implemented a prevalence layer for Compact Framework (including a BinaryFormatter-like serializer). I'd like to be able to serialize the compiler-generated classes that result from such things ...
1
vote
2answers
154 views

MySQL table creation with Spring + Hibernate

We came across the following situation. Please note that I know reserved words should not be used for table names, but I'm asking the question anyway out of curiosity more than anything. We are ...
1
vote
1answer
157 views

Fine-grained object model in hibernate

In the Hibernate in Action (Manning publication), A major objective of the Hibernate project is support for fine-grained object models, which we isolated as the most important requirement for ...
1
vote
4answers
109 views

Is it possible to write a truly generic disk-baked B+Tree implementation?

I wrote a generic in-memory B+Tree implementation in C++ few times ago, and I'm thinking about making it persistent on disk (which is why B+Tree have been designed for initially). My first thought was ...
1
vote
3answers
448 views

Javascript: persist window object refrence?

My javascript code open some windows trough: var win = window.open(); I store the win refernce in an array with all the other opened windows. Everything works fine, until the opener is refreshed. ...
1
vote
6answers
219 views

Save objects to a database?

So far in my .Net coding adventures I've only had a need to save information to files. So I've used XmlSerializer and DataContractSerializer to serialize attributed classes to XML files. My next ...
1
vote
2answers
106 views

JPQL TEMEDIFF equvalent

Is there an equvalent of the SQL TIMEDIFF functionality in JPQL? Is that possible to query with JPQL to find the records in specific time range?
1
vote
6answers
684 views

how to store data in c# application in a portable form?

I'm writing an application using windows form and c# 3.0. I was wondering if there is a recommended way of persist data across time. However, i do not want to touch the machine it is running on, as a ...
1
vote
3answers
575 views

DDD Value Object: How to persist entity objects without tons of SQL joins?

Obviously I am wrong in saying that DDD is similar to EAV/CR in usefulness, but the only difference I see so far is physical tables build for each entity with lots of joins rather than three tables ...
1
vote
1answer
696 views

Properly Implementing a One to Many Unidirectional Relationship in Hibernate

I'm trying to learn how to use Hibernate to implement Java Object Persistence. Specifically, I'm trying to figure out how to implement a unidirectional one to many mapping. I've read the hibernate ...
1
vote
6answers
874 views

What's the easiest way to persist java objects?

Right now I have java program whose classes are currently POJOs and stored in volatile memory. These need to be persisted. As I understand it two popular choices are JDO and the Java Persistence API. ...
1
vote
5answers
349 views

.net object persistence

Can you please suggest a free, open source or low cost .net object persistence framework? I am not looking for ORM tools like NHibernate or Entity Framework. The closest commercial product that ...
1
vote
1answer
153 views

Db4O - Can I save a String?

I have the following code: Assert.IsTrue(Repository.FindAll<string>().Count() == 0); string newString = "New String"; Repository.Save(newString); ...

1 2