Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
7k views

PDO Prepared Inserts multiple rows in single query

I am currently using this type of SQL on MySQL to insert multiple rows of values in one single query: INSERT INTO tbl (key1,key2) VALUES ('r1v1','r1v2'),('r2v1','r2v2'),... On the readings on ...
5
votes
3answers
2k views

In SQLite, do prepared statements really improve performance?

I have heard that prepared statements with SQLite should improve performance. I wrote some code to test that, and did not see any difference in performance with using them. So, I thought maybe my ...
3
votes
5answers
418 views

Getting “final” prepared statement from MySqlCommand

I have the following MySqlCommand: Dim cmd As New MySqlCommand cmd.CommandText = "REPLACE INTO `customer` VALUES( ?customerID, ?firstName, ?lastName)" With cmd.Parameters ...
2
votes
3answers
328 views

Mysql PDO Prepared statement efficiency

I am taking over a PHP app that uses MySQL PDO prepared statements for each time it runs an SQL statement. I know that Preparing SQL can be more efficient when the you are about to do many iterations ...
2
votes
2answers
158 views

Few questions about PDO and prepared statements

I'm starting to use PDO and prepared statements in my applications, but i have some questions to the pros out there. Hope you can help me! :) When should i use prepared statements? Every query in my ...
2
votes
1answer
172 views

PHP MySQLi multi_query prepared statement

I wanted to know if it is possible to prepare multiple statements for MySQLi multi_query?
2
votes
3answers
2k views

MySQLi prepared statements error reporting

I'm trying to get my head around MySQli and I'm confused by the error reporting. I am using the return value of the MySQLi 'prepare' statement to detect errors when executing SQL, like this: ...
2
votes
1answer
146 views

PHP PDO - output the prepared statment

Hallo, I use a prepared statment wiht PDO. and the method execute. I want to display the statment before it is executed, with the data replaced - the real 1:1 statment as a string? Any ideas?
2
votes
2answers
333 views

prepared Statement in ejb3

i want to use prepared statement with ejb3 to insert data in oracle. is it possible to use. i try to find some example on net but i could not find any good example. Please help me to use it. or is ...
1
vote
5answers
66 views

Launching a website with injeciton protection

I am a new php "developer" and a new member of the SOF site. I am launching a website for the first time and in my online research I have been told that while PHP might be easy at the surface the most ...
1
vote
1answer
74 views

PreparedStatement No Value Specified for Parameter One

Having issues with this the one that needs to be set is a auto increment integer so how would I Specify that PreparedStatement stmt = conn.prepareStatement("INSERT INTO `"+OnlineUsers.table2+"` ...
1
vote
1answer
69 views

Understanding PHP Prepared Statments

So I have a website, and the user has just logged in and it redirects them to the User Dashboard. I have the user_id in a SESSION so I can use that for my SELECT queries to grab other information ...
1
vote
3answers
65 views

Repeating PHP Queries with New Select Values?

Is there an easier way to do this instead of writing the same line of code 100+ times? I need the value of the field L_key each time as you will notice: $query1 = "SELECT L_key FROM ...
1
vote
2answers
190 views

Prepared SELECT statement in .Net

I can't understand what I am doing wrong, I can't seem to SELECT with a prepared statement. However I can INSERT with a prepared statement. MySqlCommand cmd = new MySqlCommand("SELECT * FROM ...
1
vote
1answer
70 views

mysql bind param needs a persistent(from bind to execution) object?

when i use prepared statement, i see mysql takes a pointer to MYSQL_BIND.buffer For example, to bind an integer i need to provide the pointer to integer rather than integer itself. Does it mean ...
0
votes
4answers
23 views

When to call mysqli::close

When should i call mysqli::close? I never used to use if statements to check whether bind_param(), prep() and execute() were successful. Should I call $stmt->close() at the end of the method(below) . ...
0
votes
2answers
65 views

Postgresql: PREPARE TRANSACTION

I've two DB servers db1 and db2. db1 has a table called tbl_album db2 has a table called tbl_user_album CREATE TABLE tbl_album ( id PRIMARY KEY, name varchar(128) ... ); CREATE TABLE ...
0
votes
1answer
24 views

Does mysqli supports embedded structures?

So, In mysql you can write embedded structures like this: $query = mysql_query("SELECT `id` FROM `questions` WHERE `type`='foo';"); while($row = mysql_fetch_array($query, MYSQL_ASSOC)) { $query2 ...
0
votes
1answer
61 views

cannot get MySQL stored procedure into php

The following SQL works 100% if I run it in phpMyAdmin, however if I try using it in a php prepare statement in a php file, using: $stmt = $mysqli->prepare("..."); $stmt->execute(); ...
0
votes
1answer
67 views

library deployed on Weblogic server as Prepared

I have a 2 war projects deployed as a library on a weblogic server (version 1 and version 2) and an EAR project deployed on the same server that uses the library. When I deploy the library version 2 ...
0
votes
1answer
61 views

Create User with MySQLi Prepared Statement

I have a script using PHP and MySQLi with prepared statements. The purpose is to create a new user on a MySQL server, however preparing the statement fails with no further information as to why. ...
0
votes
1answer
242 views

Wordpress - insert as prepared query vs $wpdb->insert_id

I have created a simple plugin. It has a configuration site in the backend and some functions for the user site. I need to save some user choices into database. On the beginning I used $wpdb->insert() ...
0
votes
2answers
130 views

With mysqli and prepared statements can I PASS IN COLUMN NAMES to 'ORDER BY'

I need to be able to use prepared MYSQLI statements for security reasons. I need to be able to ORDER BY COLUMNNAME DIRECTION However, the COLUMNNAME is DYNAMIC as is the DIRECTION (ASC/DESC) When I ...
0
votes
2answers
109 views

Unable to Create Prepared Statements in MySQL

I'm trying to create a prepared statement in MySQL that takes in a single parameter. When I try this on the command line I get a syntax error. However, when there are no variables in my prepared ...
0
votes
3answers
236 views

Difference Between PDO / Prepared Statement - PHP/MySQL

I tried Google to find any disadvantage but did not find any ! I'll be glad if anyone share some thing on this topic ! Advantage/ disadvantage of PDO and Prepared Statement Edit 2 I think everyone ...
0
votes
1answer
101 views

Implementing a Shared Prepared SQL statement in PHP

I am writing a class that contains an array of other objects that it generates by querying a database. Each instance of this class runs a nearly identical query so my thought was to setup a shared ...
0
votes
0answers
73 views

MySQLi Only Allowing 256 Characters

I’ve just started to use MySQLi (I normally just use MySQL Connect, etc) and have encountered a problem. If I fetch some data from a table, even if the field is of the type ‘text’, it is truncated to ...
0
votes
2answers
111 views

mysql prepared statements, is this possible?

function fetchbyId($tableName,$idName,$id){ global $connection; $stmt = mysqli_prepare($connection, 'SELECT * FROM ? WHERE ? = ?'); var_dump($stmt); ...
0
votes
1answer
71 views

php,mysql prepared statements

function addAlbum($album){ $connection = mysqli_connect(HOST,USER,PASS,DATABASE); $stmt = mysqli_prepare($connection,'INSERT INTO `'.TABLE_ALBUMS.'` (albumName) VALUES (":album")'); ...
0
votes
1answer
107 views

mysql prepared statements, trouble understanding how it works

i am trying to use prepared statements but having trouble getting it to successfully run. here is my code: function addAlbum($album){ $connection = mysqli_connect(HOST,USER,PASS,DATABASE); ...
0
votes
1answer
76 views

mysql prepared statements stores(caches) result of select?

First, this question refers to c api of prepared statements, and mysql version 5.1.48. I have one program(A) that does "select" and another(B) does "insert/update" I'd like the program(A) that does ...
0
votes
1answer
88 views

Prepared statement puts \ before '

Im using prepared statements to descramble BBcode but for some reason it puts \ before ' when posting. I dont know what causes it, but Im sure it happens when i change the BBcode to html to be put in ...
0
votes
1answer
309 views

Using prepared statement without ROW_NUMBER() and OVER() functions in Db2

Let's say I have a table T_SWA .This is my prepared statement. Select version from (Select id, version,creator,created_date ROW_NUMBER() OVER(order by created_date) cnt From T_SWA where cnt=3 and ...
0
votes
3answers
93 views

What is the syntax for counting number of rows in PHP Prepared Statement?

In using PHP Prepared Statement, what is the syntax for counting number of rows? $stmt = $conn->stmt_init(); $query = "SELECT * FROM TableName"; if($stmt->prepare($query)){ ...
0
votes
1answer
90 views

prepared statement with aggregate function

how to use prepared statement with aggregate functions ?
0
votes
1answer
220 views

Get the Actual SQL of a Prepared Statement with mysqli?

Is there any way to get the actual SQL that is the result of preparing a statement when using the mysqli extension? My problem: I am using prepared statements. In all cases, they SHOULD update a ...
0
votes
3answers
204 views

PHP Mysqli prepared not creating statement object

I am using the php mysqli extension with prepared statements, but on one query it is not creating the query object. Here is the code: $sqlq = "SELECT id,name FROM productcategories JOIN products ON ...
0
votes
3answers
4k views

Java: creating a date object from a string and inserting into MySQL

Anytime I have to handle dates/times in java it makes me sad I'm trying to parse a string and turn it into a date object to insert in a preparepared statement. I've been trying to get this working ...
-2
votes
1answer
51 views

How can I prevent SQL injection in C using a prepared statement?

I have to protect my software from SQL Injection. Here is an example of my C code: char myquery[QUERY_LEN]; sprintf(myquery, "select * from patient p where p.id_doc='%s'", us_names[index].name); if ...
-2
votes
3answers
53 views

SQL command split into multiple php lines

I have to split up this SQL command and now I have a problem with the gazillion number of quotation marks. Can someone please help?? (I'm trying to dynamically assign a filename to the OUTFILE which ...