0
votes
4answers
125 views
Use of a Union to avoid Dynamic Allocation Headaches
I'm curious if it's a good idea to use a union when accessing Win32 APIs that return variable length structures, to avoid manually managing the allocated memory.
Consider the following:
void …
2
votes
2answers
41 views
Avoiding union by join?
Hi,
My problem is on Oracle, but is probably database independent (?).
I have the following tables:
aa
vid cb
--- --
1 10
2 15
bb
vid cb
--- --
3 25
4 24
*rep
repid …
1
vote
2answers
50 views
PInvoke returns C type with union
How would I P/Invoke a C function which returns a union'ed struct?
3
votes
4answers
158 views
union members may not have constructors, but `std::pair` okay?
union members may not have destructors or constructors. So I can't template the following class Foo on my own MyClass if MyClass has a constructor:
template<class T>
struct Foo {
T val;
…
0
votes
2answers
27 views
Getting a distinct value across 2 union sql server tables…
I know this is a silly question, but Im a newb
I'm trying to get all distinct values across 2 tables using a union...
The idea is to get a count of all unique values in the columnA column without …
0
votes
3answers
90 views
Strange Behaviour Class Objects Inside Union.
Hi I wanted know the reasons of the following code
void main()
{
class test
{
public:
test(){}
int k;
};
class test1
{
public:
test1(){}
int k;
};
…
1
vote
11answers
241 views
union versus void pointer
What would be the differences between using simply a void* as opposed to a union? Example:
struct my_struct {
short datatype;
void *data;
}
struct my_struct {
short datatype;
union {
…
1
vote
4answers
78 views
Is there a UNION equivalent to FULL OUTER JOIN in T-SQL that will union dissimilar column sets?
I am trying to accomplish the following:
SELECT col1, col2 FROM table1
UNION
SELECT col2, col3 FROM table2
With the result:
col1, col2, col3
1 , 1 , NULL
NULL, 1 , 1
The union of the …
2
votes
2answers
99 views
Randomly choose an instance from union in F#
In F#, given
type MyType = A | B | C | D | E | F | G
How do I randomly define an instance of MyType?
0
votes
2answers
21 views
SQL Size comparison
I have a database where I check on the size, because clients may only use a certain amount of space, aswell as they may only have a certain number of 'pages', which I put in the db aswell.
I have the …
-1
votes
5answers
176 views
MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select union [closed]
One of our new employees made a really bad piece of code, not completely working, SQL injection points and stuff like that, what's really annoying is that he's not going to fix it as it's "working". …
1
vote
3answers
108 views
C++ when to use Union or Structs [closed]
Possible Duplicate:
Difference between a Structure and a Union in C
Hey All!
When does one use a Union in C++ or when does one use a Struct instead?
2
votes
4answers
132 views
problem with quadTree & union
hi!
i have the following quadtree-like structure, in which each cell can either be a inner node or a leaf.
if it is a leaf, it can store a color.
if it is a inner node, it stores pointers to four …
1
vote
6answers
109 views
How to dynamically create a union instance in c++?
I need to have several instances of a union as class variables, so how can I create a union instance in the heap? thank you
2
votes
1answer
142 views
Questions about vector, union, and pointers in c++
The question I have are NOT homework questions, but I am considering using these concepts in my assignment. The content,if it helps, is like this: I need to keep track of several union instances and …
