1
vote
3answers
193 views
Suggested JDBC books
I'm working in a medium-ish sized development group working on multiple projects and am looking to find good JDBC books for the team. Most of the developers already know the basics of JDBC, but are …
3
votes
1answer
271 views
finding weak reference objects in collections in java
A couple of questions regarding Java's WeakReference and Collections:
Is there a library out there that implements Java's various data-set interfaces (eg Collection, List, Set, Que …
0
votes
1answer
276 views
Swig c++ w/ Java loses type on polymorphic callback functions
Question:
Why is my C++ swigged object losing its type when passed to a Java callback function?
Setup:
I've taken the Swig Java example for doing callbacks and added an ob …
0
votes
JPA Composite Key + Sequence
I notice that it appears your building a composite primary key like this …
1
vote
Java Persistence: Cast to something the result of Query.getResultList() ?
Well there is the java Collections class solution, but you didn't explain how your casting was failing, or if it was just giving a warning...
This is one way to validate this:
…
2
votes
Display Hibernate Query in JTable
There are a lots and lots of ways to do this, but are you looking for something that would automatically figure out the columns or what? If you used the java reflection pieces you can read the Hibe …
1
vote
Hibernate ordering
I'm assuming your vehicles class looks like this? I'm using JPA here because thats what I know...
class Vehicles {
@Id
@Column(name="vehicles_id")
private int id;
// …
0
votes
Is my DAO strategy ok?
Couple of questions
Are you frequently creating your DOA to do a single task or are these long lived?
What about using a static function? Clearly your Book object can be bind …
0
votes
How to change XML based on regex matches to text (character data)
EDIT:
OK now that I understand this can go across tags I think I understand the difficulty here.
The only algorithm I can think of here is to walk the XML tree reading the text port …
1
vote
JTable not returning selected row correctly
When it swaps out the data its removing the selection (since the index is now different), you'll need recalculate the selection and set it programmatically.
I'll point out that in my experi …
0
votes
Swig c++ w/ Java loses type on polymorphic callback functions
After digging around on this problem for the weekend I guess this is a "common" problem that Swig has between C++ classes and Java. The issue is called …
1
vote
Passing data types from C++ to Java/Java to C++
I prefer Swig myself. It does the JNI wrapping for you allowing calls in any direction you'd like, multithreading, etc. It also works with multiple …
1
vote
Handling creation of ORM objects prior to persistence/generation of primary keys?
Posting this mostly because I can't leave this complicated of comment... but anyway...
Normally when I look at EmbeddedId type things I see things like from this …
1
vote
JPA/Hibernate - Embedding an Attribute
I have a similar problem in my own schema so what I've resorted to at the moment is like this:
Parent class:
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) …
0
votes
Changing the type of an entity preserving its ID
I think skaffman is right here, once the id has been set it won't persist, and further because the id is generated it expects the sequence to be in charge of assigning the id number.
You co …
