Tagged Questions
0
votes
1answer
43 views
How to get updated obejcts instantaneously by Hibernate?
I'm not getting updated objects retrieved by hibernate session. e.g. If I update an object by Session B [the object was already fetched earlier by Session A], then I'm not getting the updates made by ...
1
vote
1answer
228 views
Generate C# source code for model classes from database table schema for .Net 3.5 application
I create some WinForms apps using Ado.Net to connect the database. I'm using MVP model.
The application uses .Net 3.5 so I cannot use EF 5.0 and I am not willing to use lower version of EF. I'm ...
4
votes
6answers
90 views
Does exist ORM / Framework that converts data automatically when I want to change column datatype in table?
Assume that I have existing database with existing data.
Is there any framework / ORM that generates data conversion SQL scripts when I need change column datatype?
Of course there is problem with ...
0
votes
1answer
230 views
Directly importing java object into mysql table with columns being the object's variables
Let's say I have a Java object that with variables x, y, and z and I would like to automatically import it into a MySQL database table with columns id, x, y, and z. Is there an easy way I can ...
0
votes
3answers
192 views
Choosing between Symfony's Doctrine ORM files Model.class.php and ModelTable.class.php
when doctrine builds model files for a table, it generates three files, essentially BaseModel.class.php, Model.class.php and ModelTable.class.php. Common knowledge requires that any modifications be ...
0
votes
3answers
301 views
Object Relational Models (ORM) in a segregated environment
I'm interested in using an object relational mapper for an existing system which is a ASP.NET client, ASP.NET Web Services middle layer, and with an Oracle back-end. All database access is done using ...
1
vote
2answers
506 views
Entity hierarchy in Hibernate
What's the proper way to create 2 entities where 1 is a parent of the other? For example, we have the following 2 tables:
Email_Outbox
------------
Id
Email_Id
Date_Sent
Email_Outbox_Schedule
...
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 ...
0
votes
1answer
259 views
orm with entity framework 4 and code first
I want to write a library to store any objects to a database. I still did the mapping for known objects using code first and the classes DbContext and DbSet. But in this case I don't know the ...
0
votes
0answers
53 views
Is there an ORM with APIs to be used programatically?
Is there any ORM that offers APIs to be used programatically?
In my situation, a user will be helped through a wizard to define some entities. Thereafter those entites will be created in a database ...
