Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i want to write a php script who checks in the data base (in localhost, user="root", pass="") "data1" exists, and if is not, create it. Please thanks for any help you can give me with this.

share|improve this question

5 Answers

up vote 4 down vote accepted
CREATE DATABASE IF NOT EXISTS DBName;
share|improve this answer
i need to know in php if the data base exist, how can i? – DomingoSL Nov 26 '10 at 21:19

Check the return value of mysql_select_db - this function will return true when the database exists and can be selected - i.e., the database might exist but the current user may not have permission to access the database. This may be enough to determine in PHP if the database exists - as long as you can guarantee that the PHP MySQL database user will always have access to this database when it exists.

mysql_connect('localhost', 'root', '');
if (!mysql_select_db('mydb')) {
    echo("creating database!\n");
    mysql_query('CREATE DATABASE mydb');
    mysql_select_db('mydb');
}
share|improve this answer

Send the following to mysql from your php code :
CREATE DATABASE IF NOT EXISTS YourDB;
Documentation : http://dev.mysql.com/doc/refman/5.0/en/create-database.html

share|improve this answer
i need to know in php if the data base exist, how can i? – DomingoSL Nov 26 '10 at 21:20
Try connecting to the database. If it succeeds the database is there. If it does not observe the error to determine the cause :) – BASarat Nov 26 '10 at 21:22
Or you can use the method documented here as the accepted solution : stackoverflow.com/questions/838978/… – BASarat Nov 26 '10 at 21:23

If you want to use PHP to check if database exists or not, you can try this, someone has already answered it.

share|improve this answer

if($mysqli->query('CREATE DATABASE IF NOT EXISTS mywebsite'))

this one always creates and always return true! so how can i test anything?

share|improve this answer

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.