Tagged Questions
0
votes
1answer
32 views
Creating a temporary table with one extra column using Hibernate
I have a sequence of 5 forms that an user has to fill up in my system. On each submitted form, I send the data to my java server and store this data on mySQL database using Hibernate.
In this ...
0
votes
2answers
1k views
Create temporary table in MySQL from Java
I have this:
public static void createTemporaryTable() {
Statement s = null;
sentence = "CREATE TEMPORARY TABLE Book (ISBN int NOT NULL, " +
"title varchar(45), author ...
2
votes
1answer
1k views
Cannot create TEMP table in Android sqlite
I have tried to create a temporary table (sqlite) in Android
Here is the code snippet:
// No error - But cannot create TEMP table
database.rawQuery("CREATE TEMP TABLE IF NOT EXISTS tt1 ...
0
votes
2answers
99 views
is it mandatory to have some key field in hbm
i am using hibernate as ORM tool, i am facing one problem,
i need to map a Global Temporary table to HBM. Now, the problem is with key, i know that in the hbm it is madatory to have some key fields, ...
5
votes
2answers
2k views
Temporary tables using JDBC with null ResultSet
I am executing a stored procedure via standard JDBC Connection using MS SQL Driver version 3.0.
I have found that when I create and insert data into a temporary table the stored procedure doesn't ...
2
votes
1answer
1k views
How to use temporary table or view in Hibernate?
I would like to use temporary table in my HQL query, can I do it?
P.S. I do know there are some hacks with creating your own dialect, but I don't want to do that, but I can create view for that ...
0
votes
1answer
466 views
Hibernate design: persistent data plus temporary run-time classes
The question is this.
I have a number of persisted objects that I'll pull using Hibernate.
But during the application lifetime I'll create a few objects that
do not live outside the running time of ...