Tagged Questions

The mysqli extension, or as it is sometimes known, the MySQL improved extension, was developed to take advantage of new features found in MySQL systems versions 4.1.3 and newer. The mysqli extension is included with PHP versions 5 and later.

learn more… | top users | synonyms

140
votes
16answers
25k views

mysqli or PDO - what are the pros and cons?

In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
14
votes
6answers
643 views

Inefficient SQL Query

I'm building a simple web app at the moment that I'll one day open source. As it stands at the moment, the nav is generated on every page load (which will change to be cached one day) but for the ...
14
votes
9answers
18k views

Which is fastest in PHP- MySQL or MySQLi?

I'd like to know if anyone has any first-hand experience with this dichotomy. A few blogs say the mysql extension is faster than mysqli. Is this true? And I'm only asking about speed. I know mysqli ...
13
votes
4answers
2k views

What is difference between mysql,mysqli and pdo?

What is difference between mysql,mysqli and pdo ? Which one is the best suited to use with PHP-MYSQL?
10
votes
2answers
2k views

How to echo a MySQLi prepared statement?

I'm playing around with MySQLi at the moment, trying to figure out how it all works. In my current projects I always like to echo out a query string while coding, just to make sure that everything is ...
8
votes
2answers
1k views

How can I get every n rows in MySQL?

I have a table which contains data recorded every minute, so I have a row for each minute. When returning the data for processing, this accuracy is required for the last 6 hours but after that, a ...
7
votes
4answers
308 views

InnoDB vs. MyISAM insert query time

I have a large MySQL table (~10 Million Rows, 6.5G) Which i use for read & write. It is MyISAM, and i get a lot of locks due to MyISAM's all table lock on writes. I decided to try and move to ...
7
votes
2answers
200 views

switch to mysqli a good idea?

I'm considering switching to mysqli for all my php projects. The way my code is written (I run very simple websites and built my own basic framework which I use across all of them) I shouldn't have ...
7
votes
1answer
2k views

What are differences between Index v.s. Key in MySQL

I know how to use INDEX as in the following code. And I know how to use foreign key and primary key. CREATE TABLE tasks ( task_id INT UNSIGNED NOT NULL AUTO_INCREMENT, parent_id INT UNSIGNED NOT ...
7
votes
2answers
2k views

Advantages Of MySQLi over MySQL

What are the advantages of using MySQLi over MySQL?
6
votes
1answer
107 views

PHP weird Seg-faults on mysqli_stmt_bind_result

When migrating a PHP script from PHP 5.2 to PHP 5.3, I've stumbled to the following problem: The general purpose of the script is data mining. I have a procedure inside that adds data to the MySQL ...
6
votes
2answers
611 views

a permanent way of doing mysqli->set_charset()?

after setting all config file and runtime options for charset that i can find to utf-8, new mysqli connections made with php still has its charset set to latin1, which effectively means that i have to ...
6
votes
2answers
282 views

Not inserting correct values into MySQL database

I'm having some trouble using MySQLi to insert values into a database. I don't get any errors, but the values being inserted are not correct at all. One of the TEXT fields is always empty, and the ...
6
votes
5answers
7k views

Moving from mysql to mysqli or pdo?

Duplicate: mysqli or PDO - what are the pros and cons? I'm looking to move a website from mysql to either mysqli or pdo as primarily a learning tool, but also for performance increases if ...
6
votes
2answers
11k views

Looking for a good php mysqli class tutorial [closed]

I'm looking for a good tutorial that describes how to create your own complete mysqli connection class, maybe demonstrating catching and all that good stuff. If your wondering I have in fact done some ...
6
votes
7answers
19k views

Empty string in not-null column in MySQL?

I used to use the standard mysql_connect(), mysql_query(), etc statements for doing MySQL stuff from PHP. Lately I've been switching over to using the wonderful MDB2 class. Along with it, I'm using ...
5
votes
2answers
59 views

My PHP array of references is “magically” becoming an array of values… why?

I'm creating a wrapper function around mysqli so that my application needn't be overly complicated with database-handling code. Part of that is a bit of code to parameterize the SQL calls using ...
5
votes
2answers
916 views

Benchmarking Performance of node.js (cluster) with mysql pools : Lighttpd + PHP?

Edit(2): Now using db-mysql with generic-pool module. The error rate has dropped significantly and hovers at 13% but the throughput is still around 100 req/sec. Edit(1): After someone suggesting that ...
5
votes
5answers
692 views

PHP programming seg fault

I've been programming a site using: Zend Framework 1.11.5 (complete MVC) PHP 5.3.6 Apache 2.2.19 CentOS 5.6 i686 virtuozzo on vps cPanel WHM 11.30.1 (build 4) Mysql 5.1.56-log Mysqli API 5.1.56 ...
5
votes
3answers
256 views

How can I view the contents of a prepared statement?

I'm working on learning to use prepared statements with mysqli in PHP and usually, if I'm having a problem with a query I just echo it to the screen to see what it looks like as a first step. How can ...
5
votes
1answer
606 views

unbuffered query with MySQLi?

Are MySQLi queries unbuffered? If not, is there a way to do an unbuffered query, as with the non-MySQLi mysql_unbuffered_query()?
5
votes
3answers
620 views

Are PHP MySQLi prepared queries with bound parameters secure?

Historically, I've always used mysql_real_escape_string() for all input derived from users that ends up touching the database. Now that I've completely converted over to MySQLi and I'm using ...
5
votes
9answers
610 views

Javascript and MySQL

I want to build an entire web app using only Javascript and MYSQL . Anyone know how I can go about this if it's possible. Thank you. p
4
votes
3answers
57 views

usage of intval & real_escape_string when sanitizing integers

dear All. I'm using integer PKs in some tables of mysql database. Before input from PHP script, I am doing some sanitizing, which includes intval($id) and $mysqli->real_escape_string(). The queries ...
4
votes
2answers
74 views

Is there MAX function for rows - not for columns?

I need to get maximum value of certain number of columns (for each row). Is this possible to do in MySQL? For example:SELECT MAX(column1, column2, column3). I'm not looking for MAX function that ...
4
votes
1answer
61 views

SQl Query problem -

I have issues in query: priceDeatil ProductCode BusinessUnit price DateFrom DateTo 10001 ORB 12.00 12-08-2011 31-09-2015 10001 ORB 21.00 ...
4
votes
7answers
158 views

Switch to mysqli or stay with mysql?

We have an app here that has been in development (and now in production) for more than a year. Which has in total over 500 mysql_* calls. Is it worth it to switch all of the mysql_* in the code to ...
4
votes
1answer
49 views

Problem with SQL query when calling a static function from another static function in the same class

I'm new to PHP, but not new to programming. I have a strange problem. It's such a simple thing, and I have the feeling the solution is simple also, but I tried for hours without luck. I have a model ...
4
votes
2answers
72 views

Support to get the features implemented in a single query

Is there a way to optimize the following to a single query? $username=sanitize($_POST['username']); $sql="SELECT * FROM $tbl_name WHERE username='$username' AND email='$email' AND ...
4
votes
1answer
199 views

Is mysql_real_escape_string() necessary when using prepared statements?

For this query, is necessary to use mysql_real_escape_string? Any improvement or the query is fine ? $consulta = $_REQUEST["term"]."%"; ($sql = $db->prepare('select location from location_job ...
4
votes
1answer
485 views

Search feature with multiple criteria - PHP/MySQL

How can i create a search page with multiple criteria where at least a criteria should be checked. Table Structure ID [pk] Name Sex Location I want to create a search form where user will be ...
4
votes
2answers
384 views

MySQLi: query VS prepare

There is something I don't quite understand it at all which is prepare and query in mysqli. This one is using mysqli::query to process the query and it has been known of lacking security: public ...
4
votes
3answers
131 views

who is developing PHP database extensions such as PDO, mysql, mysqli?

Are these extensions provided by the respective RDBMS teams or are they developed by PHP community? Thanks:)
4
votes
1answer
134 views

MySQLi Prepared Statements?

I have decided to take the plunge into the improved MySQL by using MySQLI . Problem is i cannot find any in depth yet simply put tutorials online. The ones i have found are very short and or does not ...
4
votes
3answers
441 views

prepare() vs query() mysqli

I am trying to understand the difference between mysqli's query() and prepare(). I have code like below, and I would like to get the same results from both. However the prepare() does not work as ...
4
votes
3answers
492 views

What characters are NOT escaped with a mysqli prepared statement?

I'm trying to harden some of my PHP code and use mysqli prepared statements to better validate user input and prevent injection attacks. I switched away from mysqli_real_escape_string as it does not ...
4
votes
1answer
750 views

PHP and MySQLi close()

I am new to mysql and php, but am attempting to make my own cms to help make managing my websites easier. Can someone explain the mysqli's close() function. 1)Is it nesseccary? 2)What exactly does it ...
4
votes
4answers
1k views

MySQLi equivalent of mysql_result()?

I'm porting some old PHP code from mysql to MySQLi, and I've ran into a minor snag. Is there no equivalent to the old mysql_result() function? Because I can't find one anywhere in the documentation, ...
4
votes
5answers
983 views

How to make a proper mysqli extension class with prepared statements?

I have scoured the web for a good example but I can't find anything. I am trying to extend the mysqli class to make a helper class that will abstract away some of the complexities. One of the main ...
4
votes
3answers
301 views

Programming first, framework second?

Firstly hello as my first question. Looking for guidance rather than coding fix. The final flicker of Informix 4gl contracting extingiushed for me in 2004. To cut a long story short I am looking to ...
4
votes
9answers
4k views

Difference between “->” and “::” in PHP MySQLi OOP

Can anyone tell the difference between mysqli->commit and mysqli::commit? The header in this page is mysqli::commit but in examples they use mysqli->commit I'm confused.
4
votes
4answers
8k views

Can't return a result set in the given context

When ever I try to call store procedure in mysql that sends back a result set, it keeps saying me that "can't return a result set in the given context". I've google it and some said it's mysql bug, ...
4
votes
1answer
199 views

mysqli_real_escape_string AND prepared statements?

Should be a simple enough question: If I am using mysqli prepared statements, do I still need to use mysqli_real_escape_string() as well? Is this necessary, or a good idea? Thanks, Nico
4
votes
2answers
374 views

How do you use IN clauses with mysqli prepared statements

I’m moving some old code over to the new msqli interface using prepared statements, I’m having trouble with SQL statements containing the IN clause. I would just normally do this: $ids = ...
4
votes
3answers
5k views

PHP and MYSQLi - Bind parameters using loop and store in array?

It will be easier to explain with the next code (It's wrong, by the way): $selectGenre_sql = 'SELECT genreID FROM genres WHERE dbGenre = ?'; if ($stmt->prepare($selectGenre_sql)) { // bind ...
4
votes
1answer
1k views

Do MySQL prepared queries provide a performance benefit for once-per-session queries?

According to the documentation, a prepared query provides a significant performance benefit if you're running a query multiple times because the overhead of the MySQL server parsing the query only ...
3
votes
2answers
91 views

Insert NULL value into database field with char(2) as type

How can I insert a NULL value into a database field (MySQL) with char(2)? Before I used mysql_query and I got in the database the following value: NU Instead of this value there should be NULL. ...
3
votes
3answers
33 views

PHP & mySQLi: Do I still need to check user input when using prepare statements?

If I'm using prepare statements in mySQLi, would I still need to escape or check user input in any way. So for example if I had the code: $members = new mysqli("localhost", "user", "pass", ...
3
votes
1answer
42 views

The best way to store translations in MySQL DB

I'm working on multi-language website. For example, DB table pages for 1 lang looks like that Now, I have 2 ideas about translations: To use all tables in default language - English and create ...
3
votes
1answer
118 views

Segmentation fault in PHP?

Why does the following code cause a segmentation fault? <?php $CNX = new mysqli('localhost','dbuser', 'dbpass', 'dbtest'); class DAO { var $stmt; function DAO() { ...

1 2 3 4 5 25