Tagged Questions
1
vote
1answer
21 views
Hibernate named query re-parsed
We are using hibernate named query as follows :
named_query : Select this_ from TableA this_ where this_.id in( select max(id) from TableA where COLA is null group by COLB ) and rownum=1
...
0
votes
2answers
85 views
How to insert Date into MySQL Database table in Java?
How do I insert date, without time, to MySQL database table?
I tried these codes but I get the following exception:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in ...
1
vote
1answer
22 views
Workaround for JDBC Limitation on Placeholders Fails for Update Statements
I am implementing a pattern to get around a JDBC limitation. For prepared statements, JDBC limits the number of placeholders to 2100. To get around this, I am using an xml string containing 2100+ ...
0
votes
1answer
15 views
Java sticky instances of class com.mysql.jdbc.Field aggregating
I recently noticed (via jmap+jhat) that my App was leaking storing many instances com.mysql.jdbc.Field class
- I double checked my code to make sure I was closing all PreparedStatements, find a few ...
0
votes
2answers
70 views
JDBC PreparedStatement with “?” in the Column Name
I am using a JDBC connection to fetch data from the Ns Access Database.
The database design is not my control. In DB, there are column names which has "?" included in their names. For example : ...
0
votes
0answers
89 views
prepared statement setString executing subquery
I am working with java + mysql. I have the following piece of code:
String sql = "INSERT INTO tableA (id, age) VALUES (1, ?)";
PreparedStatement statement = connection.prepareStatement(sql);
...
0
votes
1answer
40 views
how to update aes encrypt with Java
I have been searching for examples where update query is performed in Advanced Encryption Standard with java, but couldn't find any except for update query in MySQL with AES_ENCRYPT?.
The code ...
0
votes
4answers
37 views
How can I add this value as a query, inside of a prepared statement?
Public void aMethod(String itemName, String theUsersName){
preparedStatement = conn.prepareStatement("INSERT INTO items (Owner_ID, Name, State) VALUES (?,?,?) ");
...
0
votes
2answers
23 views
Can this be done in MySQL? a combined insert and lookup query
Have tables Users and Items
Users: Username (varchar, no duplicates), Password (varchar), User_id(unique auto increment INT) Items: Item_name(varchar), Item_id (unique auto increment INT), Owner_id ...
1
vote
2answers
135 views
why does executeUpdate return 1 even if no new row has been inserted?
here is my very simple table (Postgres):
CREATE TABLE IF NOT EXISTS PERFORMANCE.TEST
(
test text NOT NULL UNIQUE
);
if I try to insert a String using the command below FROM the database,everything ...
2
votes
3answers
51 views
MySQL JDBC closeOnCompletion has no effect on PreparedStatement
JDBC introduced a method called closeOnAutoCompletion, which states that it closes the statement, when all dependent resultSets are close.
I have a method to create prepared statements
public final ...
3
votes
3answers
276 views
Running the same select query multiple times with different parameters: Mysql
I have a java program that needs to iterate through a hashmap to get a parameters that are then used to query the mysql database. The code is as follows:
Iterator<Entry<String, Double>>it ...
1
vote
1answer
65 views
Looking Pattern for UPDATE SQL in Java
I am looking the best coding pattern for the below update SQL table with prepared statement in Java.
SQL Table name is table1 and attr1, att2, att3, att4, attr5 and .... in table1.
Currently my ...
0
votes
1answer
70 views
Database query rollback to a savepoint fails
<body>
<%String ide=request.getParameter("q");
int num=0;
if(ide!=null)
num=Integer.parseInt(ide);
String vegg=request.getParameter("vegetables");
int newe=0;
Connection cnt1=null;
try{
...
1
vote
1answer
65 views
Statement.RETURN_GENERATED_KEYS returns null with ON DUPLICATE KEY UPDATE
Here is my sample code lines
String query = "INSERT INTO tb_product_group values(?,?,?,?,?) ON DUPLICATE KEY UPDATE prg_name = values(prg_name)";
stmtGroups = ...
2
votes
1answer
63 views
safety of setObject and null
PreparedStatement.setObject's Javadoc says it's not safe to just pass null value, and recommends using setNull instead, which requires to pass the column DB type along.
Since it's not trivial to ...
6
votes
2answers
92 views
How to see PreparedStatement's SQL string? [duplicate]
When we create a PreparedStatement we use '?' chars to then be replaced by setted parameters.
How can we see the final SQL string after these parameters are set?
2
votes
1answer
63 views
copying parameters from one PreparedStatement to another
I create a new PreparedStatement like this:
PreparedStatement newPs = origPrepStatement.getConnection().prepareStatement("EXPLAIN " + sql);
origPrepStatement is also Preparedstatement and it ...
0
votes
1answer
239 views
PreparedStatementCallback; bad SQL grammar in JDBC Spring
I have an update method to update the content of a table based on a specific field and I am getting following exception.
Code is :
public void updateTaxoActive(String oldDesc, String description) {
...
1
vote
2answers
78 views
Prepared statement update - performance improvement
I have a single oracle prepared statement in my application which will update the status of around 100,000 records in the table at one shot.
For Example:
UPDATE <TABLE NAME> SET ...
0
votes
1answer
70 views
Error: Column does not exist
I have been able to link PostgreSQL to java. I have been able to display all the records in the table, however I unable to perform delete operation.
Here is my code:
con = ...
0
votes
2answers
91 views
Prepared statements with MySQL?
I am having some trouble with, what I believe to by syntax, for prepared statements.
I have the following code
String query2="SELECT lname FROM school_student WHERE sid = ? ORDER BY sid;";
...
1
vote
2answers
180 views
Using Java's JDBC PreparedStatement on a SQLite Database to query for NOT NULL
I'm new to PreparedStatement in Java, and I can't seem to figure out an optimal solution to my problem. I want to query for records in a table that are either NULL, or NOT NULL.
When reading ...
0
votes
1answer
98 views
How to check whether Prepared Statement has some batches or not, before executeBatch()?
I have a doubt related to Prepared Statement in Java as I don't know much about it.
I have a use case in which I have to use PreparedStatement. But I am just thinking before writing code that:
...
0
votes
1answer
63 views
Where is prepared statement precompiled, in jvm or in db?
When reading across different posts a question came across the mind Where is prepared statement precompiled, in jvm or in db? And when does the process actually happen in a java class. Example Below ...
1
vote
2answers
145 views
Generate Random SELECT sql with three columns name always in there
I have a class named ReadTableConnectionInfo which contains details about the table such as tableName and it's columns. I have written a multithreaded code in which I am supposed to generate a random ...
1
vote
1answer
53 views
Some information about the JDBC logic in Spring Framework application
I am learning how to use JDBC inside Spring application but I have some doubt about it.
So, let me explain my doubts about a practial example:
If I have a class that implements my DAO interface and ...
1
vote
1answer
126 views
Updating with Prepared statement: ORA-00933 error
I'm using the following servlet code to update data from my android application. But I'm receiving error as ORA-00933: SQL command not properly ended. Here is my code
try
{
...
1
vote
1answer
183 views
Get the Query Fired using PreparedStatement with the bind variables on Oracle Database [duplicate]
EDIT: I am using Oracle
I am Writing a dynamic query using PreparedStatement which goes something like this
String query="UPDATE <tablename> SET
column1=?,column2=?,.....,coulmn7=? ...
0
votes
5answers
885 views
ORA-00928 missing SELECT keyword in oracle
I'm using the following code to insert data. But I'm receiving error as "ORA-00928: missing SELECT keyword"
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
java.sql.Connection conn = ...
-2
votes
1answer
106 views
How to store data in two tables
I want to store following data is mysql data base
How to write jdbc program for storing following data
I am having following table
message(messageid, message_heading ,message_data)
...
0
votes
1answer
97 views
unrecognized token '(' in values list, expecting ')'
I am trying to insert into Oracle Database using JDBC prepared statement. Below is the sql that I am trying to insert.
And everytime I get sql exception for below SQL
private static String ...
4
votes
1answer
500 views
Java JDBC prepared statement maximum parameter markers
Im building a large database call using PreparedStatement that has 2000+ parameter markers.
Im getting this error
Caused by: java.sql.SQLException: Prepared or callable statement has more than 2000 ...
1
vote
2answers
187 views
Rollback batch execution when using jdbc with autocommit=true
Im using JDBC, with autocommit=true. In one of the operation, I'm doing a batch inserts, using prepared statements.
public void executeBatchInsert(String query, List<Object[]> entityList) {
...
1
vote
1answer
95 views
Dynamically adding columns for SQL PreparedStatement - still safe against injection?
I am trying to prevent SQL injection in my Java program. I want to use PreparedStatements to do this, but I don't know the number of columns or their names in advance (the program allows ...
0
votes
0answers
50 views
Polygon in JDBC PreparedStatement
i need to create a prepared statement for selecting ways in a polygon
"SELECT w.id from ways w WHERE w.poly && (polygon ?)"
i'm setting the parameter
ps.setString(1, "((" + (tl.x - xLen) + ...
0
votes
0answers
103 views
What are the reason(s) I would NOT use Batch updates in JDBC? [closed]
I am considering the implementation of batch updates in an ORM (specifically, SimpleORM).
Until now, on commit of the ORM transaction, each modification is sent to the database using a ...
0
votes
1answer
170 views
SQL PreparedStatement; Am I doing it right?
I am building a web app with a single (not pooled) full time (jdbc) connection between static classes and the database. This is expected to be a low traffic site and the static methods are ...
1
vote
1answer
127 views
MySQL SELECT with LIKE in java Servlet MySQL error
I'm using Java 7 Servlets and Tomcat 7 as server and MySQL as database.
I'm trying to do some searching of users, but theres probably some problem in my SQL, can anybody see the problem? The point of ...
0
votes
3answers
116 views
How to Insert in Oracle using java
I am having CLOB column in Oracle Data Base , I want to insert String .
It works if I use setCharacterStream, but how to insert String by setBytes am getting exception.
Please help me.
String s = ...
0
votes
2answers
155 views
Batch prepared statement auto commit
I am trying to create multiple tables (upto 20) via java.sql prepared statement batch execute. Most of tables are related to eachother. But there is some confusion in my mind.
1) set connection auto ...
0
votes
0answers
104 views
Is there an alternative to using ResultSet of one statement as format string parameters to execute another statement
PostgreSQL 9.2, jdbc4, and the DBMS is through PgAdmin3.
I need to retrieve some resultset with a statement object which is a callable object with a stored function and then process the types ...
-1
votes
3answers
132 views
Error Statement [closed]
No suitable method found for setDate(int,java.util.Date) method
PreparedStatement.setDate(int,java.sql.Date,Calendar) is not
applicable
public void update (Pasien dp) {
DateFormat df = new ...
0
votes
3answers
87 views
Prepared statements connection error
I am trying to use a Prepared Statement to insert a record (into an embedded java database). I want the information to enter when I click the save button (JButton). I am new to Java and have never ...
-1
votes
1answer
191 views
Java Prepared statement error table not found
I've got a problem with a data migration job build with Talend Open Studio for Data Integration. Talend open studio generates java classes. Im migration from one mysql table to another.
The ...
1
vote
3answers
157 views
Error while invoking a stored procedure from java
I have written a following stored procedure in a postgres database
create or replace function reviseTax(revisiondate date, taxrate decimal) returns table(employeeid integer, month date, ...
1
vote
0answers
197 views
sp_prepare fails with SELECT * INTO #tmpTable but not sp_prepexec
I ran into a weird problem when switching to the jTDS driver (1.3) instead of using Microsoft JDBC driver (4.0.2206).
Here is the DDL for the example code:
CREATE TABLE [dbo].[Test] (
[Id] int ...
0
votes
2answers
46 views
Is omitting columns from JDBC SQL SELECT a premature optimization?
This is question related to question here, my question is rather from the perpective of Java application.
How to optimally query the database, if I have a webservice that returns data from a database ...
1
vote
1answer
144 views
Do I need to use connection pooling if I use one statement to select attributes and then 1 prepared statement with multiple sql queries
I am querying a postgres db utilizing the jdbc driver and this is a going to be a fairly basic standalone java app querying a local installation/hosted server.
I wanted to log the sql that I pass ...
-1
votes
3answers
131 views
java prepared statement
I have a requirement like this...
Need to execute a java prepared statement example:
String sql = "select first_name from student where roll_no :=1";
connection.prepareStatement(sql);
But the ...



