Tagged Questions

0
votes
2answers
36 views

Mysqli Prepared Statement Problem in bindParam()

Hi guys. Just as usual i was looking around best practices with PHP, and prepared statements seems the kind of stuff i should now how do with my eyes closed. So i started playing around with some …
0
votes
2answers
107 views

Java deque / prepared statement memory leak.

One of the following pieces of code generates a memory leak, any idea which part? 1) private Deque<Snapshot> snapshots = new LinkedList<Snapshot>(); Iterator<Snapshot> i = …
0
votes
3answers
119 views

Prepared statement - using a function as part of the where clause

I am working with a Java prepared statement that gets data from an Oracle database. Due to some performance problems, the query uses a "virtual column" as an index. The query looks like this: String …
1
vote
2answers
31 views

Unable to close JDBC resources!!!

We are running a websphere commerce site with an oracle DB and facing an issue where we are running out of db connections. We are using a JDBCHelper singleton for getting the prepared statements and …
0
votes
2answers
141 views

Using Prepared Statements to set Table Name

Im trying to use prepared statements to set a table name to select data from but i keep getting an error when i execute the query. The error and sample code is displayed below. [Microsoft][ODBC …
0
votes
1answer
69 views

How to get the status of a Java PreparedStatement.executeQuery(..)

I have a SQL query running using something like this: PreparedStatement pstmt = dbConn.prepareStatement(sqlQuery); ResultSet rs = null; .. .. Set parms here .. .. rs = pstmt.executeQuery(); It …
1
vote
4answers
106 views

SQLException: JZ0S4: Cannot execute an empty (zero-length) query. on a Prepared Statement

Heres a class executing PreparedStatements on a Connection. public class doSomething { private PreparedStatement ps; public setPS (Connection conn) throws SQLException { String sql …
0
votes
2answers
101 views

How can I set the IDENTITY_INSERT option for a JDBC PreparedStatement?

I need to copy data into an MSSQLServer 2005 database table which has an identity column. I've seen how to disable the identity column by executing SET IDENTITY_INSERT <table> ON before the …