Tagged Questions

3
votes
4answers
2k views

How to use MySQL prepared statement caching?

How do i take advantage of MySQL's ability to cache prepared statements? One reason to use prepared statements is that there is no need to send the prepared statement itself multip …
2
votes
2answers
41 views

PHP- inserting binary data in mysql using prepared statements

Hello, I have to insert a row using php's mysql improved library to a table in mysql that has its primary key of type VARBINARY. The contents of this field are a computed sha1 hash …
0
votes
2answers
47 views

Problems with my prepared statement update

$query = "UPDATE kids_entry SET entries=? WHERE parentsemail=?"; $stmt1 = mysqli_prepare($connection, $query); mysqli_stmt_bind_param($stmt1, 'is',$entries,$parentsemail); mysqli_e …
0
votes
1answer
20 views

Returning specific rows using prepared statements

I have a problem where my prepared statement appears to only be returning the number of rows returned rather than the value of the row. Below is my code. I did try google for this …
0
votes
2answers
22 views

MySQL/C++ and Prepared Statements: setInt always 0

I'm using the MySQL Connector/C++ library to insert values into a database table. I'm following the examples at http://dev.mysql.com/tech-resources/articles/mysql-connector-cpp.h …
0
votes
2answers
50 views

grab current user id - php class

Hello everone, I am buidling a small job application website, and i'm using a the basis of a login system taken from a Nettuts.com tutorial. The logging in works fine, but I am ha …
3
votes
2answers
84 views

How can I print the SQL query executed after Perl’s DBI fills in the placeholders?

I'm using Perl's DBI module. I prepare a statement using placeholders, then execute the query. Is it possible to print out the final query that was executed without manually escap …
0
votes
2answers
27 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 …
0
votes
2answers
47 views

Can’t Insert Data Into Tables Containing Auto Increment Primary Key Using PHP Prepared Statements

I know I have that my connection to the database works, and a test I did using no auto-increment id worked fine for me. The code below refuses to work and I can't find a a way arou …
0
votes
2answers
376 views

Oracle - OCI query timeout

Is there any way to set a timeout on Oracle OCI calls (OCIStmtExecute for example) ? Thanks
0
votes
2answers
148 views

Java/Oracle: executing a prepared statement fails on a second iteration of a loop (not all variables bound). Why?

I'm debugging a Java App, which connects to Oracle DB via a thin client. The code looks as follows: (i'm trying to simplify the use case here so pardon me if t does not actually c …
2
votes
3answers
48 views

Which tokens can be parameterized in PDO prepared statements?

I'm playing around with prepared statements in PHP/PDO. The basic queries work fine, passing a value to the WHERE clause: $stmt = $db->prepare( 'SELECT title FROM episode WHERE …
0
votes
2answers
38 views

JDBC, MySQL: getting back row data from PreparedStatement executes.

I'm using the following setup: public MySQLProcessWriter(Connection con) throws SQLException { String returnNames[] = {"processId","length","vertices"}; addresser = con.prepare …
0
votes
2answers
35 views

JDBC, MySQL: getting bits into a BIT(M!=1) column

I'm new to using JDBC + MySQL. I have several 1/0 values which I want to stick into a database with a PreparedStatement. The destination column is a BIT(M!=1). I'm unclear on wh …
1
vote
2answers
31 views

Prepared statements and the IN expression

I have a database where users can search for records that have on or more of a list of items. I'm using IN to do the search, but I can't get IN to work with prepared statements. Th …

1 2 3 4 5 8 next
15 30 50 per page