Tagged Questions
The data-model tag has no wiki summary.
7
votes
2answers
88 views
Why custom types accept ad-hoc attributes in Python (and built-ins don't)?
I'd like to know why one is able to create a new attribute ("new" means "not previously defined in the class body") for an instance of a custom type, but is not able to do the same for a built-in ...
3
votes
1answer
391 views
How to maintain an ordered table with Core Data (or SQL) with insertions/deletions?
This question is in the context of Core Data, but if I am not mistaken, it applies equally well to a more general SQL case.
I want to maintain an ordered table using Core Data, with the possibility ...
2
votes
3answers
175 views
Smart pointers, or “better” destructor
Which type of the smart pointer (shared, scoped) would be for such a data structures the most suitable...
Structure 1:
//Class with cross-references to points p1, p2
class PointTopo
{
private:
...
2
votes
1answer
416 views
Column-family concept and data model
I'm investigating the different types of NoSQL database types and I'm trying to wrap my head around the data model of column-family stores, such as Bigtable, HBase and Cassandra.
First model
Some ...
2
votes
2answers
824 views
implementing core data to an existing iPhone-project
I´ve some trouble with implementing Core Data to my existing iPhone-Project. First I wanna give you a more detailed view on it:
Some of my classes are nested into each other: The class "Game" has an ...
1
vote
1answer
377 views
Enterprise Architect Oracle long field column properties
I have a little problem with Enterprise Architect by Sparx System.
Im trying to model database schema for Oracle. I created table with primary key with data type long. But when im trying to modify ...
1
vote
2answers
831 views
iPhone: How I can Access Data in a View Controller Class from Another Controller Class?
In my application I have one Entry form in which there are six Text fields
Name :UITextField
Date of Birth :UITExtField
Age:UITextField
Address :UITextField
Phone No :UITextField
Image : UIIMageView
...
1
vote
2answers
2k views
Manual Core Data schema migration without “document changed” warning?
The data model for my Core Data document-based app (10.5 only) is in a
framework, so automatic schema upgrades using a Core Data mapping
model don't appear to work. It appears that the Core Data ...
0
votes
0answers
39 views
Import SQLite to Core Data xcode 4?
i am beginner with xcode 4. How to import SQLite to Core Data in Xcode 4.
Please help me with sample code :)
thanks All
0
votes
1answer
61 views
How to define a to-self relationship that's to-many only one way using Core Data?
In a vector graphics manipulation program, I have a "Group" entity which specifies groups of graphics and other groups. A Group can belong to only one other Group, but can contain many other Groups. ...
0
votes
1answer
36 views
How do I model a 1:N relationship that is constrained a by third entity?
My predicament: I am Chen-modelling an accounting database in which the client to account entity relationship is one-to-many (1:N), but the client to office_location relationship is unique ...
0
votes
1answer
57 views
Cocoa — change class of an object in app update?
I have two objects of class WidgetClass in my stored model. They are saved each time the app exits and reloaded each time it starts. I want to update my model to make one of them a WidgetSubclass ...
0
votes
1answer
1k views
Vaadin and DataModel. How can i get the value stored by a Property DataModel implementation used by a Label Field ??? Vaadin
It is just a simple TEST application
import br.com.elf.ui.IndexApplication;
public class IndexApplication extends Application {
public void init() {
setMainWindow(getStartUpWindow());
...