Tagged Questions
The datamodel tag has no wiki summary.
18
votes
6answers
1k views
How / if to refactor a Delphi program using only forms and data modules
After years of coding Delphi programs as untestable code in forms and datamodules, including global variables, and the only classes are the forms themselves, containing all the code I need for the ...
11
votes
2answers
3k views
Object Oriented Database Vs object Relational Database
I wonder how Object Oriented data modeling is different from Object Relational data modeling?
Is it something like the pluses of both object oriented and relational data modeling were clubbed to ...
6
votes
3answers
3k views
Generate code for core data attributes in xcode 4
In xcode 3 there was a helpful feature in the data model builder where you could highlight some attributes/relationships in an entity, right-click, and choose to copy method and property declarations ...
5
votes
3answers
320 views
4
votes
1answer
99 views
Haskell Data Model Visualization from Source
Is there a tool that will automatically create a visualization (a class diagram sort of thing) of a haskell data model from source code? Something that walks down data constructors and records and ...
4
votes
1answer
155 views
MOMC error with XCode4 and Data Model Compile
Whenever I build my project, I'm getting the error:
Command /Developer/usr/bin/momc failed with exit code 1
I've read posts here about deleting extraneous Data Model versions as a fix, and nothing ...
4
votes
2answers
518 views
Useful stock SQL data models?
As a parallel to my question about Useful stock SQL datasets, I wonder if anyone has come across a library/web page/wiki/etc. that contains stock SQL data models. For example, the problem of ...
4
votes
2answers
178 views
free, recommendable Tools for data modeling?
are there free, recommendable Tools for data modeling?
ERM/ORM Diagrams
Creating database models (SQL SERVER
2005)
As Simple to use as Visio(no license
here)
Code generation is only a nice to
have ...
3
votes
2answers
103 views
Implementing a data model to prevent common errors
There seem to be multiple ways to implement data models in Clojure:
ordinary built-in datatypes (maps/lists/sets/vectors)
built-in datatypes + meta-data -- for example: (type ^{:type ::mytype} ...
3
votes
2answers
49 views
Best way to create a data model with dynamic amount of properties in .NET
I'm writing a data access layer where I want to return just the data required for each request. Let's say there is a total of 100 properties that you could retrieve, but a normal request will probably ...
3
votes
2answers
282 views
Creating data model class for database handling
I was just starting to work on an database application when I realized I should implement MVC pattern as the application is quite complex and involves a number of database operations.
In regards to ...
3
votes
2answers
497 views
Parallel algorithm design
I'm trying to figure out what is the best practice while designing parallel algorithm for model of data distribution. What could be pros and cons against block distribution vs cyclic distribution of ...
2
votes
1answer
75 views
Cassandra sorting results by count
I am recording data on users searching for various keywords. What I'd like to produce is a report of all of the unique keywords that the users have searched for, sorted in ascending and descending ...
2
votes
2answers
38 views
Best Practice: Should one avoid bi-directional relationships?
I wonder what the best practice is to deal with a data model like this:
We have 3 entities:
Role
User
Permission
Note that the entities are represented as java classes and will be mapped to a ...
2
votes
2answers
41 views
Is the name->value pair of an attribute in XML considered to be two nodes, interpreted by XPATH?
The following article http://docs.oracle.com/javaee/1.4/tutorial/doc/JAXPXSLT3.html says that XPATH considers the following to be nodes:
Root
Element
Text
Attribute
Comment
Processing instruction
...
2
votes
1answer
39 views
How do I search for an entity in Google App engine by user?
I am attempting to lookup a user entity that is related to the current user, and I do not seem to be able to find the user after they get stored in the database.
When I am creating the user for the ...
2
votes
2answers
32 views
Data structure for imagelinks
I'm developing a housing app with a number of houses which each have attributes. Those attributes are currently listed in a dictionary like: House 0 {key: string, key: string} etc.
I'm currently at ...
2
votes
1answer
133 views
A good data model for storing score and history for a game
I am developing a little game (I'm using Play! framework).
In this game, the players answer technical questions, and win points when they answer correctly.
In addition to that, they may win some ...
2
votes
1answer
33 views
Spring Formatters inside data model, is this a violation of MVC? Is there a better alternative?
Spring provides formatters (and converters) with the use of annotations. This means that a request parameter can be annotated on a controller to format user input and also a property of a data model ...
2
votes
2answers
147 views
what exactly is a map dimension in a multi-dimensional map?
Like many these days, I am an old relational-model user approaching Cassandra for the first time. I have been trying to understand Cassandra's data model, and when I read about it I frequently ...
2
votes
4answers
463 views
asp.net mvc models vs entity framework models
Would it be best practice to create a model in your asp.net mvc - model folder.
Use these models with your views and by using a service layer to "adapt" my model to the EF-model.
Or have you used ...
2
votes
2answers
952 views
Data Modeling: Supertype / Subtype
Looking to figure out the proper way to model the below requirements.
There are 3 types of “parties” to be concerned with, a Fan, a Band, and a BandMember.
That BandMember will always be ...
2
votes
1answer
898 views
How to properly delete and re-add Entity Data Model
newbie to Entity Framework here. Using VS 2010 and SQL Server 2008 express DB.
I was having trouble refreshing an Entity Data Model after adding new tables. So, I followed a suggestion I found here ...
2
votes
3answers
61 views
Should model objects be flexible
[Sorry but work is proprietary so I cannot give details of objects]
I am working on a Java application with a colleague. I am doing the client side and he is writing the server code.
The application ...
2
votes
4answers
436 views
REST and JAVA JPA
I am trying to understand the code of some project which is not properly documented.Am the only developer working on the task.I dont have much experience.
There is a data model and there are some ...
2
votes
1answer
111 views
Is there a safe subset of JSON that can be used with all JSON parsers & databases
JSON is still becoming more and more important for exchange of data but the JSON specification is rather lax in some aspects:
The names within an object SHOULD be unique.
An implementation ...
2
votes
2answers
437 views
Cassandra/BigTable data model - what's the best approach for building indexes?
I'm in the process of spiking a conversion from MySQL to Cassandra for PenWag.com. In Cassandra, I'm storing Users keyed off of a GUID, but users sign in with their email, not the GUID (obviously). ...
2
votes
5answers
185 views
ORM tool OR build the object to relational mapping layer manually
I am trying to determine what if any advantage or disadvantage there is to using an object to relational mapping layer like hibernate or the Microsoft Entity framework when building the data layer.
...
2
votes
2answers
1k views
Advanced DataModel in Xcode with CoreData
I have a question regarding a rather advanced DataModel which I would like to use with CoreData.
Before I get into details about what I did so far, I will describe what I want to do.
I have a List ...
2
votes
1answer
882 views
ASP.NET MVC2 - Does Html.EditorForModel() work on the nested data model?
My test shows it doesn't work. It ignores the nested data in model.
Can anyone confirm this?
2
votes
1answer
182 views
Help setting up a data model in Core Data
I am new to Core Data, and have been trying to figure out how to set up my data model. I made a sample table to try and show how I need the data to relate.
First Name Last Name Competitor Number ...
2
votes
3answers
409 views
Call Method on Every Ancestor in Python
I have an object of class 'D' in python, and I want to sequentially execute the 'run' method as defined by 'D' and each of it's ancestors ('A', 'B' and 'C').
I'm able to accomplish this like this
...
2
votes
1answer
134 views
Advantages of keeping to a protocol for a data model
The question title is probably not correct because part of my question is to try and get some more understanding on the problem.
I am looking for the advantages of making sure data that is imported ...
2
votes
7answers
771 views
Data Model for Boolean Expressions
Do you know a way to organize boolean expressions in a database while allowing infinite nesting of the expressions?
Example:
a = 1 AND (b = 1 OR b = 2)
The expression as a whole shouldn't be ...
2
votes
4answers
1k views
Formatting XSD scheme for peer review
I designed a data model which is represented by an XSD scheme.
The data model also provides the types that are being used as web service parameters in a WSDL descriptor.
I would like to send the XSD ...
1
vote
1answer
28 views
Is it ok to have many Entity Data Models in your project or should you always have only one?
We have a big database with hundreds of tables.
We are just beginning to use Entity Framework 4.
Should we build one huge Data Model for it or divide it into many Data Models based on some criteria?
1
vote
1answer
68 views
JSF DataModel getRowData always return the first row (which has index zero)
I have rich:select component inside a rich:dataTable column.
I added a4j:ajax tag to handle onblur event , to process some values related to this selected row.
But this worked only correct for the ...
1
vote
0answers
20 views
A general multi user / multi assets adminitration model
Im looking for a general "multi user with multi assets adminitration" databasemodel.
Especially i would like to know how to best handle the "rights".
Let me describe my problem and question using ...
1
vote
1answer
52 views
Magazine Subscription Business Logic & Data Model
I'm currently working on a web application that manages magazine subscriptions which has three plans (6 months, 1 year, 2 years).
A member will subscribe for one of those three plans which when the ...
1
vote
1answer
1k views
PrimeFaces DataTable Sorting & Filtering don't work with JSF DataModel
I have 3 test web applications, using the same model and controllers, the difference is in JSF session managed beans.
The applications A and C use JSF DataModel to retrieve items :
A JPA Query ...
1
vote
0answers
819 views
Jsf DataModel vs Java List problem ( no row available exception )
In JSF 1.2 One was listing Items using Java List :
private List<Customer> customerItems = null;
, but in JSF 2.0 JSf DataModel (ListDataModel) is the way to go. (I am using JSF 2.0)
private ...
1
vote
1answer
280 views
How to persist order in JSF datatable or datamodel
I'm using JSF and I have a complex datatable where the user can sort by column headings, re-order individual entries, etc. The table itself contains rows that are made up of BOTH read-only and freely ...
1
vote
5answers
120 views
Why can't I call del [:] on a dict?
What's going on here?
>>> a = {1: "a", 2: "b"}
>>> del a[1]
>>> a
{2: 'b'}
>>> a = {1: "a", 2: "b"}
>>> del a[:]
Traceback (most recent call last):
File ...
1
vote
1answer
154 views
Help me to get better understanding of Digg's Cassandra data model
http://about.digg.com/blog/looking-future-cassandra
I've found this article about Digg's move to Cassandra. But I didn't get the author's idea of Bucket for pair (user,item). Little more details on ...
1
vote
3answers
277 views
DAL generator for php
Going from .Net to PHP because I want to explore the possibilities of the language I'm struggling to find some way to autogenerate a DAL. In .Net I'd just use visual studio to generate a datamodel, ...
1
vote
0answers
86 views
Is there an Erwin Macro to pull out the table comment/definition?
I created a script template to generate the extendend properties to basically to include the data dictionary in the database, however, i couldn't find any macro to read-out the table comment from the ...
1
vote
4answers
75 views
Are many-many relationships to be avoided and if so, what is the alternative?
I was left a comment that many-many associations are to be avoided, but I cannot find the original comment/user who left me this info. So I'm asking the community, are many-many associations to be ...
1
vote
4answers
108 views
Why should primary keys of DB not be shown in html code, e.g. in select fields?
anywhere I read that values in select boxes (or anything else in the html code) should not be the primary key of the database table. For example:
<select>
<option value="1">Value ...
1
vote
1answer
274 views
difference between User and Account object in social network design?
I am building a data model for a social networking site and lost of how to model Users and Accounts.
1) User signsup and creates an Account. So we assign the User a user Id like on most social ...
1
vote
1answer
138 views
Cassandra getting data (query on different attributes)
dear
how i can get data from Cassandra using value
posts = {
'1': { //this post id
'user_id': '4',
'body': 'This is awesome!',
},
}
i cen get the post using post id
...