Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using this method to connect to mysql db :

$this->_Con = new mysqli($this->_DB['Server'],$this->_DB['User'],$this->_DB['Pass'],$this->_DB['DB']);

What is the difference when I connect using this method:

$this->_Con = mysqli_init();
$this->_Con->real_connect($this->_DB['Server'],$this->_DB['User'],$this->_DB['Pass'],$this->_DB['DB']);
share|improve this question

1 Answer

up vote 0 down vote accepted

Its just another way of connecting to your database. If you use mysqli_init() it will initialize the mysqli object first. Then using the object you will call real_connect() to connect to the database. But when you use new mysqli() you are initializing the mysqli object by passing in the connection values as parameters, So it does initialization and connection at the same time.

Note: Calling the constructor with no parameters is the same as calling mysqli_init().

In your first case you are getting the connection object as the return value because you are calling mysqli() constructor with parameters. So you can run queries on it. But in your second case you need to store the connection like this,

$con = $this->_Con->real_connect($this->_DB['Server'],$this->_DB['User'],$this->_DB['Pass'],$this->_DB['DB']);

Then run queries on $con

share|improve this answer
So you mean that my $this->_Con will be the same with these 2 method?? But when i try to use the second method, i guess my insert statement fails to insert new row. Do you have any idea why?? – Nix R. Eyes Oct 4 '12 at 3:34
check my edit!! – Deepak Oct 4 '12 at 4:03
@user1650716 Generally you use either the object from new mysqli() or the structure from mysql_init(). Not both. – staticsan Oct 4 '12 at 4:12
i cant run prepare query.. it says: Call to a member function prepare() on a non-object.. can you please show me an example on how can i run insert query with prepared statements?? – Nix R. Eyes Oct 4 '12 at 6:15
or my true goal is to set MYSQLI_CLIENT_FOUND_ROWS from affected rows to matched rows when running update statements, is there a way to achieve this without using real_connect?? – Nix R. Eyes Oct 4 '12 at 6:22
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.