Tagged Questions
The object-relational-model tag has no wiki summary.
5
votes
2answers
940 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.
...
3
votes
3answers
277 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
163 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 ...
3
votes
2answers
161 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 ...
2
votes
2answers
654 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
...
1
vote
2answers
48 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
35 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
3answers
130 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 ...
1
vote
1answer
62 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
248 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 ...
0
votes
0answers
27 views
what are weaknesses of Object-Relational database [closed]
what are weaknesses of Object-relational model?
0
votes
0answers
34 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
46 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
2answers
83 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
1answer
126 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
2answers
42 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
3answers
61 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
0answers
53 views
Web App and Android Database multi ORM
I'm at an internship creating a web app using STS -> spring framework and hibernate for ORM with mySQL database.
I thought it would be cool, to write an android app on the side to do a lot of the ...
0
votes
1answer
206 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
45 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
114 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
48 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
157 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
1answer
113 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
0answers
37 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
2answers
655 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
0answers
260 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 ...
0
votes
2answers
477 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 ...