The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

Databinding child objects - Should I use Linq or SQL?

I'm binding a repeater to a sql query, let's say its Orders. I need to display rows from this table along with associated records, let's say the customer and his/her full name. In this brave new ...
0
votes
0answers
17 views

commonj.sdo.impl.CreateEnvironmentException with EclipseLink XSDHelper / XMLHelper

I've written a DataHandler in Java for Websphere ESB 7.0. Now I'm trying to write JUnit (4) tests for this DataHandler, but I have the following error : java.lang.ExceptionInInitializerError at ...
0
votes
0answers
119 views

How to use BLL + DAL in MVVM [closed]

Question How do i use the 3-Tier architecture in combination with MVVM as N-Tier? stumbling Suggestion How i thing it should be looks like after reading many posts: View knows the ViewModel ...
0
votes
2answers
51 views

Mapping Tool like EF Designer but for Data objects?

In trying to separate my domain layers and GUI and looking into all the different ways to do that, one thing that I keep asking is why is this so difficult? Why all the extra code for data obejcts ...
0
votes
0answers
42 views

How do I create custom DataObjects in Python?

I'm searching for the Python alternative of .NET's DataObject class, so I can set data and then copy the DataObject to the clipboard. Pseudocode: dataobject = DataObject() ...
1
vote
1answer
199 views

Loop Through an AJAX Called by Jquery that Pulled remote HTML, then Parsing the Data For Certain Criteria and pulling html tr

Okay To start off this is my first post so I apologize initially for any "Newbie" mistakes I may Make. I will try to be Detailed as possible and lay it out as best I can. What I Am doing: Creating ...
0
votes
1answer
351 views

How to create data object dynamically in java?

I am studying data object in Java I have question for creating the data object dynamically. For example , we have... public class tasks { private int vmnumber; private int tasknumber; private ...
0
votes
1answer
219 views

Adding additional data to object in Knockout.js

So I've been learning Knockout.js and am really digging it. I'm using it to add some SQL interaction to a guest list on an events website I'm working on. I'm using destroy to mark entries for deletion ...
0
votes
2answers
543 views

[Silverstripe 2.4]: How to get records containing columns from one-to-many relationship?

there are two dataobject classes "A" and "B" having one-to-many relationship. I want to get data containing columns from both parent and child dataobject. How to achieve this in Silverstripe 's ORM or ...
0
votes
1answer
147 views

SilverStripe Dataobject as pages using 2 images

I'm trying to develop a tutorial from http://www.ssbits.com that uses Dataobject as pages. Here's the link to it: http://www.ssbits.com/tutorials/2010/dataobjects-as-pages-part-1-keeping-it-simple ...
0
votes
1answer
69 views

get property of a dataobject in refernce to other property of same object in as3

how to get the speed property of 'smokeobject' inside a enter_frame listener 'animatesmoke' in reference to the movieclip 'whitesmoke' which is also a property of 'smokeobject here is my code public ...
0
votes
1answer
358 views

silverstripe, how to use the doPublish()

I am working with SilverStripe, and I am working on making a newspage. I use the DataObjectAsPage Module( http://www.ssbits.com/tutorials/2012/dataobject-as-pages-the-module/ ), I got it working when ...
4
votes
3answers
161 views

Java Design: dealing with data objects used by many classes

First, a brief description of the library that brought this up: I have a library that listens continuously on a provided serial port, reading in blocks of bytes and passing them along to be processed ...
1
vote
1answer
387 views

Silverstripe: Dataobject in Siteconfig output in template

I have a problem similar described on the silverstripe problem: [http://www.silverstripe.org/dataobjectmanager-module-forum/show/19853][1] I have a working DataObject, wich mainly provides a Title, ...
1
vote
1answer
127 views

creating special data objects in r

For some packages I can see special type of objects. For example I am getting following message when I try to print a dataset from a package. multitrait This is an object of class "cross". It ...
2
votes
1answer
241 views

DataObject.GetDatapresent with subclass

When I call this method DataObject.GetData(typeof(ItemType)) from an instance of a subclass of ItemType the method returns null... How can i get the data from the subtype? Thank you
2
votes
1answer
142 views

How to build data object in browser?

I want to know that can we build a data object using jquery/json, which only exist in the browser like we have session object at server side? The reason for having a data object is that I am ...
0
votes
1answer
1k views

Pass parameter from onclick event into function that builds HTML using data object - half working so far in jsfiddle

I am trying to access data from a javascript object in order to dynamically populate a div with the appropriate info. In my example, there are three steps in a tutorial. When the user is finished with ...
2
votes
2answers
201 views

PHP PEAR/DataObject equivalent to Rails' easy ActiveRecord finding functionality

In Rails, say a blogging application, given a particular post object you could get the name of the author of the post doing something like: post = Post.find(1) author_name = post.author.name Is ...
0
votes
2answers
128 views

Java bean in cocoa?

I am unclear what's the most appropriate way to represent simple data objects with properties in cocoa. In Java, java beans make a lot of sense to implement such objects: declare all the properties ...
9
votes
5answers
549 views

Refactoring large data object

What are some common strategies for refactoring large "state-only" objects? I am working on a specific soft-real-time decision support system which does online modeling/simulation of the national ...
0
votes
1answer
398 views

Silverstripe Editors can not edit own DataObjects

my problem is that editors can't edit or create certain DataObjects I created for page I built. Some are editable and some aren't.... And if I switch language, it's a multilanguage site, then the ...
1
vote
2answers
2k views

java.lang.NoClassDefFoundError: org.eclipse.core.runtime.RegistryFactory

I'm trying to use DataObjects in Java: DataFactory factory = DataFactory.INSTANCE; in one java Project using: import commonj.sdo.DataObject; And I'm getting this error: Exception in thread ...
3
votes
3answers
826 views

How to define difference between business model and a data model?

I see the term often used as if there is a concrete distinction between the two when discussing MVC for OO languages. From what I get from context it is that business models perform an action to ...