Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
355 views

knockout.js: Uncaught Error: No Modification Allowed Err

I start with this (truncated for beauty): <script src="/Scripts/jquery-1.6.2.min.js" ... <script src="/Scripts/knockout-1.2.1.debug.js" ... <script src="/Scripts/knockout.mapping-latest.js" ...
4
votes
1answer
633 views

Can I map an EnumSet to a series of boolean columns automatically using Hibernate Annotations?

I have an EnumSet that I thought it would be good to map into a series of boolean columns. This will make it easy to inspect using SQL tools and also resilient to changes to the available enum ...
4
votes
3answers
1k views

What metadata repository tools are used in industry?

For logical data model mapping, do we have some tools in the market. Any open source or relatively cheap tool?
3
votes
3answers
412 views

Scala Database Mapping Library Similar to iBATIS

I've been using iBATIS for years and have been very happy with it. iBATIS is very good about letting one write their own SQL while handling the mundane work of mapping data to/from the ...
3
votes
1answer
200 views

Combining delete-orphan with a where condition

Hibernate mapping question where the behavior is ambiguous and/or dangerous. I have a one-to-many relationship that has a cascade-delete-orphan condition AND a where condition to limit the items in ...
3
votes
4answers
1k views

Jquery: Mapping XML Nodes to HTML ID elements

never easy to encapsulate what to say in the title... but here we go... I realise I am probably seeing straight past the obvious, and possibly built in function of JQuery. What I am trying to do is: ...
3
votes
4answers
5k views

How to map collections in Dozer

I'd like to do something like: ArrayList<CustomObject> objects = new ArrayList<CustomObject>(); ... DozerBeanMapper MAPPER = new DozerBeanMapper(); ... ArrayList<NewObject> ...
3
votes
3answers
2k views

What is the difference between NHibernate and iBATIS.NET?

I am looking for some up to date information comparing NHibernate and iBATIS.NET. I found some information searching Google, but a good bit of it applies either to the Java versions of these products ...
2
votes
3answers
627 views

Linq data mapping with Ms Access database: “Missing semicolon (;) at end of SQL statement.”

I've been using Linq data mapping with an Ms Access database. I create an OleDbConnection as usual and pass it to the DataContext. This has worked fine until now, to retrieve data from tables based ...
2
votes
2answers
167 views

Tools for mapping time series data

I'm looking for suggestions/examples of tools or APIs that enable the mapping of large amounts of time series data into an intensity map. The data includes dimensions for country, series, and year. ...
2
votes
2answers
205 views

Should a Domain Object Contain Its Mapper?

Given a domain object (say, for example, Person), should that object contain its Data Mapper (Person_Mapper)? For example, I could have an inactivate action work in these two different ways: $mapper ...
1
vote
0answers
60 views

Data-Type mapping in SQL server 2005

Is there a way to declare mapped data-types in SQL Server 2005, something like Oracle's %Type: Declare a emp.sal%type where data-type of a will be same as sal field of emp table or Declare a ...
1
vote
1answer
372 views

Dapper model mapping

I've been playing with Dapper and I have a question. Is there a way for me to be able to have an enumerator type property in my POCO class and use Dapper? Seems like every time I add a property which ...
1
vote
0answers
36 views

App/GUI for matching up list items?

I am migrating data from one database schema to another. I have to match up fields from the old to the new. I'd like to have a simple app or GUI interface where I have a list of the tables and ...
1
vote
1answer
61 views

What practical (and lightweight) techniques are there for semantic/data matching?

I have an application that lets users publish unstructured keywords. Simultaneously, other users can publish items that must be matched to one or more specified keywords. There is no restriction on ...
1
vote
1answer
1k views

What's the difference between DAO and Data Mapper

Is there a difference between the DAO pattern and the Data Mapper pattern? Is DAO just one of doing Data Mapper?
1
vote
4answers
1k views

What data mapping tool is good for mid size projects

I need a data(and metadata) mapping tool for mapping one database metadata to other. Are there any cheap tools available for that purpose?
0
votes
0answers
21 views

Quick Computing & Pairwise matching

I have a list of 18000 entries. I want to check if each of these entries exists as a pair with other entries in the same list against a table in remote database. For example; I have a list like ABCD ...
0
votes
1answer
73 views

Python: map widgets to database for reading and editing it

I am relatively new to database GUI programming, and I want to make a simple app in Python, which allows user to access and edit database. I want to view/edit tables and specific records plus generate ...
0
votes
0answers
114 views

Fusion Tables Creating Intensity Map With Custom Colours

I'm trying to create an intensity map with Google fusion tables. I've got my data already in a table with the location information in the form of ISO codes. However, I'm struggling to get it into ...
0
votes
0answers
40 views

use the values from the dataset table and assign it to the next select table aa parameterised value?

i am writing code to select some data from a table and fill the dataset using dataadapter.fill method. Now i want to use the values from the dataset table and assign it to the next select table aa ...
0
votes
0answers
88 views

Flat file to XML data mapping

I get given a CSV file on a daily basis. The CSV needs to be transformed into XML, and then imported into an ERP system. I'd like to use a mapping tool like Altova MapForce to setup a map and define ...
0
votes
0answers
29 views

What's the best way to associate similar data ? [ Core DB Design ]

I'm guessing most of you already know how keyword tags are used in blogs today to associate similar data. Now if you were to come up with a more intelligent way of associating similar data, how would ...
0
votes
3answers
194 views

Searching for a substring match from a hash in Perl

I have a file that has the substrings that I need to match in a given string. These given strings are taken from another file which has the actual data. This is a column in a csv file. If the given ...
0
votes
1answer
141 views

Ruby DataMapper: is there an equivalent to Java Hibernate' component mapping?

Coming from a Java/Hibernate environment, I can map some columns within a table to be a "component" that is belongs to a parent class. For example an User object contains a Preference object, which ...
0
votes
1answer
213 views

export table/view names with column names from sql server 2005 database

data mapping exercise approaches (3000+ tables) and I can get table names out (thanks to previous Stack Overflow answer) but is there easy way to get all table & view names and their associated ...
0
votes
1answer
171 views

XML-RPC object mapping

Recently I was working on web services proxy. I got 2 web services proxy. UI will call Proxy A to let say create a record. then what Proxy A will do is to call Proxy B to do the actual task which ...
0
votes
1answer
89 views

Given an input and desired output, figure out the needed transformation

I want a program that does what I said in the title. I realize that this is a pretty vague problem. I also realize that figuring out how to transform any input into any output is nearly ...
0
votes
3answers
292 views

What are some ways to map & normalize related data?

Let's say you need to funnel random, related data given to you into more succinct categories. Example - You're given the following data. NOTE - There could be any number of other related, columnar ...
0
votes
3answers
181 views

Is referencing and calling methods via strings in PHP a bad idea?

I've always worry about calling methods by referencing them via strings. Basically in my current scenario, I use static data mapper methods to create and return an array of data model objects (eg. ...
0
votes
3answers
308 views

Mapping class properties to generic columns in table .NET

I have have a SQL Server table which has generic names like Text1, Text2.. etc. The table was designed like this because the same structure is used for different projects. I have a class in .NET ...
0
votes
1answer
157 views

Linq To SQL : Modeling Associations

I have three tables Projects, Users and ProjectMembers. The ProjectMembers table is a mapping table and has only two columns ProjectId and UserId. In my object model i have two classes Project and ...