How to create a MySQL database under windows . Trying to install v bulletin on a windows machine . Never done that b4.
Stupid question : How to create a MY SQL database
Collapse
X
-
Stupid question : How to create a MY SQL database
Originally posted by rayadp05I rebooted, deleted temp files, history, cookies and everything...still cannot view the news clip. All I see is that fucking gay ass music video from "Rick Roll". Anyone else have a different link to the news clip?Tags: None -
-
Download MySQL, install it - set it all up...then download phpmyadmin (www.phpmyadmin.net)...I reccomend using Apache (www.apache.org) for the web server... and of course you will need PHP (www.php.net)...then you're set!Yii Framework Guru - Seasoned PHP vet - Partner @ XXXCoupon.comComment
-
I already got everything I need installed. What I need is too create a database.Originally posted by rayadp05I rebooted, deleted temp files, history, cookies and everything...still cannot view the news clip. All I see is that fucking gay ass music video from "Rick Roll". Anyone else have a different link to the news clip?Comment
-
mysql> create database x;
mysql> show databases;
mysql> grant all on x.* to drdre identified by 'hellyeah';
?Comment
-
from your admin cpanel or whatever you are using you might have access to phpMyAdmin... that is easiest way for you to create a database.
if not then open up a php page in your browser and put that code in :
mysql_query("CREATE TABLE my_table");Comment
-
/usr/local/mysql/bin/mysql -u root -p
create database databasenamegoeshere;
GRANT SELECT,ALTER,INSERT,UPDATE,DELETE,CREATE,DROP ON databasenamegoeshere.* TO usernamegoeshere@localhost IDENTIFIED BY 'passwordgoeshere';Comment

Comment