Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

oracle insert with many bind variables over WAN is very slow

we have problem with slow insert statement using 40 bind variables as columns values. It runs several seconds when running over WAN link and we were not able to nail down the problem, until we used ...
1
vote
1answer
29 views

C++ sqlite3 bind parameters

I've only been playing with the sqlite3 library for C++ for a few days, but it's causing me a great deal of frustration. I want to define a parameterized CREATE TABLE, and later bind the parameters ...
1
vote
2answers
41 views

Do I need to escape data to protect against SQL injection when using bind_param() on MySQLi?

As the title says, do I have to escape user input when using bind_param() or is that done internally? Thank you.
1
vote
2answers
225 views

Dynamically bind mysqli_stmt parameters and then bind result (PHP)

I'm trying to dynamically bind mysql_stmt parameters and get the result in an associative array. I've found this post here on stackoverflow where Amber posted an answer with the following code: ...
1
vote
1answer
252 views

pdo prepared statement insert DEFAULT when the variable in BindParam is null. I tried: IFNULL or COALESCE

I have this problem: I'm using PDO prepared statement.... I want to BIND a variable BUT if the variable is NULL it have to INSERT in MYSQL the DEFAULT VALUE of the field... I'm trying with ...
1
vote
1answer
86 views

stmt->bind_params dynamically? PHP

How would it be best to approach this task? require_once('models/databaseModel.class.php'); class crudModel extends databaseModel{ public function __construct(){ parent::__construct(); } ...
1
vote
1answer
380 views

Can't bind string containing @ char with mysqli_stmt_bind_param

I have a problem with my database class. I have a method that takes one prepared statement and any number of parameters, binds them to the statement, executes the statement and formats the result into ...
1
vote
2answers
1k views

Execute sql statement via JDBC with CLOB binding

I have the following query (column log is of type CLOB): UPDATE table SET log=? where id=? The query above works fine when using the setAsciiStream method to put a value longer than 4000 characters ...
1
vote
2answers
3k views

C++ SQLBindParameter

Here are the declarations of the variables: string strFirstName; string strLastName; string strAddress; string strCity; string strState; double dblSalary; string strGender; int intAge; ...Do some ...
0
votes
1answer
22 views

Issue With Mysqli Prepared Statement When Using AES_ENCRYPT

I have searched extensively before posting. :) I am trying to do a simple insert into mySQL. I am using mysqli using prepared statements. Below is the code: $sql_query = "UPDATE $table SET $name = ...
0
votes
0answers
57 views

bind_param ; number of elements in type definition string doesn't match number of bind variables;

Could anyone tell what's wrong? I tried to do it in different ways but always happens the same error: Warning: mysqli_stmt::bind_param() [mysqli-stmt.bind-param]: Number of elements in type ...
0
votes
1answer
430 views

Bind_param Non-Object Error w/ mysqli

When attempting to insert the initial row for a table that will track daily views, I am getting the error: Fatal error: Call to a member function bind_param() on a non-object in /.../functions.php ...