Tagged Questions
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 ...
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
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
...
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 ...
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 ...
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 ...
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 ...
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
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 ...
