Questions tagged [datamodel]

According to Hoberman (2009), "A data model is a wayfinding tool for both business and IT professionals, which uses a set of symbols and text to precisely explain a subset of real information to improve communication within the organization and thereby lead to a more flexible and stable application environment.

In software engineering, the term data model is used in two related senses. In the sense covered by this article, it is a description of the objects represented by a computer system together with their properties and relationships; these are typically "real world" objects such as products, suppliers, customers, and orders. In the second sense, covered by the article database model, it means a collection of concepts and rules used in defining data models: for example the relational model uses relations and tuples, while the network model uses records, sets, and fields.

References:

584 questions
0
votes
1 answer

How Would I Use Core Data Models to Build a Simple Money Based App with Single or Multiple Entities

I have my first app in the pipeline and I know exactly how it's going to work; the part that is racking my brain is the Core Data Model in the background. The premise of the app is record when you give money to someone and when you receive money…
amitsbajaj
  • 1,304
  • 1
  • 24
  • 59
0
votes
1 answer

How to access data dynamically from DataModel for collapsible list in Blackberry 10

I need to implement collapsible list with dynamic data in BB 10. For this i am using FilteredDataModel example provided in Github. Currently all data is hard coded in example but it is required to fill data dynamically in ListView. Searched a lot…
SB24
  • 117
  • 1
  • 8
0
votes
0 answers

What data model should I use in this case?

I am creating a game and need to think of an underlying datamodel to use in a SQL database, running on InnoDB engine. The main entities will be accounts, slots and characters. Every account has minimal one slot, possibly many more. And each slot can…
skiwi
  • 66,971
  • 31
  • 131
  • 216
0
votes
2 answers

Best Mongodb Data Model for Response time statistic website

In my project, I have servers that will send ping request to websites, measuring their response time and store it every minute. I'm going to use Mongodb and i'm searching for best data model. which data model is better? 1- have a collection for…
Yahia Reyhani
  • 847
  • 1
  • 11
  • 18
0
votes
1 answer

Data modeling for nosql database for Social Networking site

I am developing one social networking website. Right now I am using mysql for data storage. Now I have to move on nosql database (I prefer ElasticCache or DynamoDb (amazon service) ). But I am confusing about data modeling. In mysql I have following…
0
votes
1 answer

Convert DataModel to List in Java

Can anybody tell me if its possible to convert a DataModel to an ArrayList? And how can I do it? Please I have to know it as soon as possible!!! I can convert the ArrayList to ListDataModel using new ListDataModel(List list), but I don't know how to…
Diego Sabino
  • 47
  • 3
  • 9
0
votes
1 answer

Linq to Entities: Mixed graph of Entities, EntityKeys, Attached, and New Objects

In my data model I have a fairly common division between my objects/tables/data: "Transactional" entities that represent the work that is being done by the system. These entities are created by the system and are only important in specific…
Craig Walker
  • 49,871
  • 54
  • 152
  • 212
0
votes
1 answer

Calculated value passed as parameter to data model not showing on tableview

I have a form that has 4 TextFields which I'm trying to track with an ObservableList that has 5 columns. The TableView has an extra column to hold a calculated value (the 5th column in my ObservableList). The data is dumping fine from the 4…
John
  • 165
  • 2
  • 3
  • 15
0
votes
1 answer

Design pattern for translatable Hibernate models

I have a Hibernate model that (simplified) looks like this: public class CoverageLine { private Long id; private String coverageText; private boolean coveragePresetTo = true; private OnNewPolicy onNewPolicy = OnNewPolicy.SHOW; } I need…
mseebach
  • 971
  • 2
  • 9
  • 15
0
votes
2 answers

Extjs Store DataModel Subfield Null Error

When I try to load remotely data to grid I get this error for subfields: Cannot read property 'id' of null My DataModel: Ext.define('ruleDataModel', { extend: 'Ext.data.Model', fields: [ { name: 'id'}, {…
efirat
  • 3,679
  • 2
  • 39
  • 43
0
votes
1 answer

Biological Taxonomy Data Model

Looking for industry/standard data model for biological classification. Wikipedia
0
votes
1 answer

Getting View Controller to retrieve data from a data model file

I'm pretty new to programming. I am creating a very simple iOS Quiz app just for practice. Here is what I have gotten done thus far: I created the Xcode project using the "Single View" template. Thus, I already have the appDelegate files, the…
0
votes
1 answer

Relationship Modelling in Core Data

I'm fairly new to Objective C and Core Data and have a problem designing a case where players team up one-on-one and have multiple matches that end up with a specific result. With MySQL, I would have a Player table (player primary key, name) and a…
Stevie
0
votes
3 answers

Print Data to screen based off of a query in ASP.NET MVC?

I have an application I'm working on where I want to loop through some data where a flag in the data is set to 1 or 2 and print it to screen. The idea I'm working on using is from one of the MVC tutorials:
    <% For Each m As Movie In…
LiamGu
  • 5,317
  • 12
  • 49
  • 68
0
votes
1 answer

sencha-touch application not working

i am not able to figure out the problem in the following sencha-touch code i have written. it shows no errors but still when i run it, it doesn't work. are there any more files or classes that the application requires? i am running it on chrome…
theimpatientcoder
  • 1,184
  • 3
  • 19
  • 32