The object-relational-model tag has no wiki summary.
5
votes
2answers
1k views
Should I learn Linq to SQL even though its being rolled into Entity Framework?
I am looking to learn Linq to query MS SQL databases, but am unsure of which path to take. I read recently that Linq to SQL is being rolled into Entity Framework, and development has maybe stagnated.
...
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 ...
4
votes
2answers
428 views
How can I define a type in oracle11g that references a collection of that type?
I want to do something like this
create type Item as object (
id number,
subitems table of ref Item
)
but oracle throws an exception when I try to do it. Is this possible, and if yes then ...
3
votes
3answers
617 views
Which Javascript MVC framework best handles relational data?
I'm looking to try, for the first time, a JavaScript MVC framework like Knockout, Backbone.js, Spine, JavaScriptMVC, etc.
I've started looking at some of the documentation available for these ...
3
votes
1answer
362 views
What is an extended SQL schema?
I have an assignment where one of the questions is asking for an "extended SQL schema" of a given object-relational database. Does anyone have an idea of what this question means?
The given database ...
2
votes
3answers
659 views
Implement 1:N relation in postgreSQL (object-relational)
I'm struggling with postgreSQL, as I don't know how to link one instance of type A to a set of instances of type B. I'll give a brief example:
Let's say we want to set up a DB containing music albums ...
2
votes
2answers
2k views
Persistence a One-To-Many Relationship
I am using Java EE 6. Just want to throw it out there first
Here is the relationship. A customer can have multiple facility
Here is Customer Class
@Entity
public class Customer {
@Id
...
2
votes
1answer
41 views
How to model and query objects in relational databases?
I have a complex database scheme for a dictionary. Each object (essentially a translation) is similar to this:
Entry {
keyword;
examples;
tags;
Translations;
}
with
Translation {
...
1
vote
1answer
227 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 ...
1
vote
2answers
187 views
Dynamic Database/Key - Value/Entity - Key Value Dillemma
I have been programming relational database for many years, but now have come across an unusual and tricky problem:
I am building an application that needs to have very quick and easily defined ...
1
vote
1answer
107 views
foreignkey column in object relation model in C#
why in ORM(object relation model) Model in this sample foreignkey column publisher in book class is a class of publisher,while where we could use of a long type(in database publisher is foreignkey ...
1
vote
2answers
505 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
...
1
vote
1answer
107 views
Oracle Object-Relational add method
I'm learning oracle object-relational model. I already know how to declare, call methods.
but how can I add a new method to an existing object?
is there something like "alter table add function ...
1
vote
2answers
535 views
The benefits of using an object relational database such as Oracle/PostrgreSQL vs a regular Relational database?
I'm curious as to what the major pros/cons are of using an object relational database over a regular relational database are?
In what circumstances is it more practical, and are object relational ...
1
vote
1answer
91 views
Orcale - How to Create a Foreign Key from a Table to a Custom Datatype
Working with Oracle Express 11g, learning the interactions for object-relational databases.
Running into trouble while trying to create a foreign key from a normal table, to a table of a custom ...
1
vote
0answers
152 views
Sanity of design for my C# .NET in-memory object representations of database rows [closed]
I've been trying to revise the structural design of the C#.NET-based system I'm currently working on. Sorry, this came rather lengthy, but I cannot describe it shorter - it's a bit complex.
The ...
0
votes
3answers
299 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 ...
0
votes
3answers
191 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
1answer
103 views
Postgres Object-relation database doesn't seem to function properly
I've defined my tables so:
create table device (
id serial primary key,
manufacturerid integer references manufacturer(id) on delete restrict,
model text,
price real,
usagepros text,
usagecons text
...
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
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
78 views
Getting the Article title for the Comment Crud
I created an Article and Comment Models and have CRUD on both. Its works perfectly. What I need now is to have the article.title field displayed in Comment Crud instead of the comment.articleid. How ...
0
votes
1answer
460 views
RESTful API resource architecture and syntax; Am I doing it right?
I'm working on implementing a RESTful API resource architecture in my micro-framework. I'm modeling my resource paths in parallel with the object hierarchies, taking advantage of the fancy Routing ...
0
votes
1answer
156 views
Is this a good approach for a custom object-relational mapping in Java?
I'm developing a sample Java application that uses Oracle's built-in "HR" database schema. I'd like to treat table rows as Java objects. One of the tables in the HR schema, EMPLOYEES, is ...
0
votes
1answer
180 views
Properly populating tables in an Object Relational database
I've got a homework assignment that requires that I use Oracle 10g Express to implement an Object Relational database to track phone billing data. I have a superclass of Communications with ...
0
votes
2answers
2k views
How do I insert data into a object relational table with multiple ref in the schema
I have a table with a schema of Table(number, ref, ref, varchar2, varchar2,...).
How would I insert a row of data into this table?
When I do:
insert into table
values (1, select ref(p), ref(d), ...
0
votes
2answers
864 views
Object Relational Features of SQL Server
Does anyone know a good reference to look into what Object Relational features are available in SQL Server (any version)? I found a really good summery for Oracle but all I can find for SQL Server is ...
0
votes
1answer
63 views
Insert data into nested table
May I please have some help to Insert values into a table. The table is called PurchaseOrder_objtab. Here is the type for the table:
CREATE TYPE PurchaseOrder_objtyp AUTHID CURRENT_USER AS OBJECT
(
...
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 ...
0
votes
0answers
54 views
Hibernate Query for selecting only some special classes from a table per hierarchy table
I have the following class structure:
GParent
|-P1
|-C1
|-C2
|-C3
|-P2
|-C4
|-C5
GParent, P1, P2, Ci (i=0..6) are classes. They have been mapped to a table called yatable in my database. ...
0
votes
2answers
509 views
Error Creating SessionFactory Hibernate in myeclipse reverse engineered database
I'm learning hibernate in myeclipse. I tried to reverse engineer a mysql table and follow the official myeclipse tutorial. All the xml files are generated but writing a simple test programme it gives ...
0
votes
0answers
52 views
Migration - Data conversion from RDB to ORDB: +/- of 2 solutions
We are going to migrate data from one database (RDB) to another (ORDB).
The new model has been modified from the old RDB-schema. Some fields has been removed and some might have been added. We have ...
0
votes
2answers
511 views
CodeIgniter with ORM vs YII
I usually work with PHP Codeigniter , and now I am also thinking about moving to YII, tell me if it is a good decision ?
Also the use of ORM with these frameworks is a plus for an experienced ...
0
votes
0answers
105 views
what are weaknesses of Object-Relational database [closed]
what are weaknesses of Object-relational model?
0
votes
0answers
74 views
Time in an object relational model
I have a number of projects with classes that represent atomic units of time. They encapsulate methods for determining equality, adding and subtracting, converting to and from DateTime and TimeSpan ...
0
votes
1answer
159 views
Collecting data from multiple sources and saving it in a local database
What would be the ideal solution to periodcally/automatically pull the data from different sources (Db2, mysql, xml ect) and store this data locally in XML format or in DB?
PHP is my preferred ...
0
votes
1answer
416 views
pdo insert error: OCIStmtExecute: ORA-12899: value too large for column
I have a PDO insert problem. Here is my code snippet. It binds the data value (submited by user) to the data params;
...
if((is_int($actualVal)) || ($actualVal ==NULL)){
print $actualVal ...
0
votes
1answer
98 views
Doctrine: Relating a model to itself using a link table, like “This event is related to to the following other events”
So in English, the relationship would sound like "This event is related to to the following other events".
My first instinct is to create an EventEvent model, with a first_event_id field and a ...
0
votes
1answer
84 views
Are there any O/R M or ERD tools that work with database schemas?
I'm looking for an O/RM or ERD tool that will take schemas into account and create namespaces for them. I have a database designed with multiple schemas. I have multiple tables with the same table ...
0
votes
1answer
258 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 ...
0
votes
0answers
360 views
Oracle ORDB Hierarchical Data
I am trying to create some hierarchical data using Oracles object relation features.
I have defined a "Post" as follows:
create type Post as object (title varchar(20), body varchar(2000),
author ...

