The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
82 views

What is the better solution to save heterogeneous listview?

I have an adapter for a list of heterogeneous items, all of Action type. ActionAdapter.java import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import ...
0
votes
3answers
95 views

C++ How to tell apart specific object types from a Heterogeneous Collection?

So if i have a heterogeneous collection of Car objects Car* c = {truck, van, convertible} If the collection of objects was random and I wanted to go through the collection with a for loop, how can I ...
2
votes
1answer
53 views

How is the RDF based Heterogeneous Relational Database Integration work?

My Question is how I can integrate two Heterogeneous Relational Databases based on RDF? Is that done just by transferring the two relational databases, one by one separately into RDF statements, and ...
2
votes
3answers
202 views

Heterogeneous polymorphism in Haskell (correct way)

Let a module to abstract Area operations (bad definition) class Area someShapeType where area :: someShapeType -> Float -- module utilities sumAreas :: Area someShapeType => [someShapeType] ...
1
vote
1answer
57 views

Can tungsten replicator connect to sqlserver through ODBC and standard SQL?

Tungsten appears to support ODBC connections, but it's not clear if a connection to sqlserver would work. Any thoughts? I want to have sqlserver as the source, and MySQL as the destination. Drop ...
2
votes
2answers
96 views

How to call virtual function of an object in C++ [duplicate]

Possible Duplicate: Overriding parent class’s function I'm struggling with calling a virtual function in C++. I'm not experienced in C++, I mainly use C# and Java so I might have some ...
0
votes
1answer
75 views

Can I make the typesafe heterogeneous container like the one fromf Bloch's Effective Java work with JPA?

What I need is something like public class Catalog { private Map<Class<?>, Object> options = new HashMap<Class<?>, Object>(); public void ...
0
votes
1answer
313 views

Heterogenous computing using OpenCl Vs java

Java and OpenCL both support Heterogeneous Computing; systems with multiple architecture working cooperatively in parallel(Task and data parallel ). portability is the main goal in both the cases, ...
0
votes
0answers
2k views

Heterogeneous queries require the ANSI_NULLS and ANSI_WARNINGS options to be set for the connection. This ensures consistent query semantics

I have checked over the whole web and couldn't find a solution that seems to work for me.. I have recreated my stored procedure, making sure to have these lines as first lines: SET ANSI_NULLS ON GO ...
0
votes
1answer
1k views

Heterogeneous Collection of Partials

I am banging my head to figure out a way to have a heterogeneous collection of partials. I use this to list the collection of partials called @feed_items (in the "Tweet" class) and its working great ...
2
votes
3answers
616 views

What types of code domains is OpenCL suited to?

I read the OpenCL overview, and it states it is suitable for code that runs of CPUs, GPGPUs, DSPs, etc. However, from looking through the command reference, it seems to be all math and image type ...
0
votes
1answer
186 views

Interworking MPI between Windows and Linux

I have several Windows box and Linux box interconnected with Infiniband, and I need to run MPI jobs in both environment, does anyone know what's the best way to interwork them ? Currently, I am ...
0
votes
4answers
362 views

Serial CPU vs GPU code

I'm writing a theoretical assignment of the possibilities in heterogeneous computing. I need to compare the effectiveness of a single thread (non-parallelizable) executed in serial manner on either ...
0
votes
1answer
158 views

How to make an OLE heterogeneous join between MS Access Db and Pervasive SQL 2000i Db

I would like to use an OleDbDataReader and a select statement similar to below: I am using C# 4.0 and .NET 4.0: Database1 = MS access Database2 = Pervasive SQL 2000i SELECT db1.Field1, db2.Field2 ...
6
votes
5answers
2k views

Heterogeneous containers in C++

I saw this nice graphic which classifies which STL container would suit based on different requirements of data such as: -- Fixed Size Vs Variable size -- Data of same tyme Vs different type -- ...
4
votes
2answers
200 views

ANTLR3 Hetero nodes are not created

I am trying to create a heterogeneous tree based on a sample provided here: http://www.antlr.org/wiki/display/ANTLR3/Tree+construction#Treeconstruction-Heterogeneoustreenodes I have created a grammar ...
2
votes
1answer
558 views

Extend ANTLR3 AST's

With ANTLR2, you could define something like this in grammar definition file: options { language = "CSharp"; namespace = "Extended.Tokens"; } tokens { ...
0
votes
2answers
696 views

Using Oracle Heterogenous services to access sql server database table via ODBC

I have created a dblink 'POC_HS' from oracle to sql (implemented heterogeneous services) and I am able to successfully pull out data from the default database that the DSN(for sql server) is connected ...
0
votes
1answer
737 views

ANTLR: Heterogeneous AST and imaginary tokens

it's my first question here :) I'd like to build an heterogeneous AST with ANTLR for a simple grammar. There are different Interfaces to represent the AST nodes, e. g. IInfiExp, IVariableDecl. ANTLR ...
4
votes
2answers
5k views

SVN:ignore how-to and on what?

It seems to me that adding the property svn:ignore on files like .classpath would be a good idea. I use both Windows (work, ugh) and Linux development environments and every time I sync with the ...
5
votes
4answers
2k views

C++ How to create a heterogeneous container

I need to store a series of data-points in the form of (name, value), where the value could take different types. I am trying to use a class template for each data-point. Then for each data-point I ...
6
votes
4answers
200 views

What would be the safest way to store objects of classes derived from a common interface in a common container?

I'd like to manage a bunch of objects of classes derived from a shared interface class in a common container. To illustrate the problem, let's say I'm building a game which will contain different ...
3
votes
4answers
262 views

sychronizing two heterogeneous databases

I have 2 heterogeneous databases. One in mysql and one in ms sql. I want to keep them in sync. There will be flow of data periodically and information flow will be both ways Anyone got any ...
1
vote
1answer
595 views

Rendering a Heterogeneous Collection of View Models in Silverlight 2

I have a hierarchy of view models representing formatted content: public abstract class ContentPartViewModel : ViewModel { } public class TextContentPartViewModel : ContentPartViewModel { public ...