SharkSpace Web Hosting

Live Help
Toll free sales: 1-888-375-1050
| SharkCenter Client Area | HelpCenter |

Join the SharkSpace community forums.

Register a domain name for only $7.95/yr!

Advantages of MYSQL 5 over MYSQL 4

Posted in Mysql

In the world of databases that work with PHP, MYSQL 4 has been the norm for quite some time now. It functions well, has decent performance and generally does what it is supposed to do. But as with all things, its time is passing and it is time to upgrade to its successor, MYSQL 5. There are many reasons to upgrade to MYSQL 5, the main reason being stored procedures, triggers, and views. (more…)

No Comments »

Quick reference guide to mysql

Posted in Mysql

Below are some of the most common commands you will use when working with mysql from command line.

Auto-incrementing rows:

mysql> CREATE TABLE table (number INT NOT NULL AUTO_INCREMENT, name CHAR(10) NOT NULL);
mysql> INSERT INTO table (name) VALUES ("change"),("change2"),("change3");
(more…)

No Comments »