Return to "Database & Programming"


View the quick start guide for this product

All articles under Miscellaneous

Using the SQLite Database Engine
SQLite is a lightweight yet fast database engine that requires no complex backend to use. Databases are stored in files, and no application runs in the background, allowing for simple troubleshooting and programming. SQLite is considered by some to be faster than other available databases in many cases, and is...

Using SSH to Import and Export your Data and Databases
You can export your database by using the "mysqldump" command. From the SSH command line, enter the command: mysqldump your_db_name > your_db_name.dmp This will push all data from the specified database into a dump file for backup. To import data from a dump file you can simply direct it into the MySQL command. mysql...

Cannot Connect to Database Errors Appear
If your site shows "cannot connect to database" error messages, most likely your database server has stopped running, or your database connection information inside of your site programming (such as PHP scripts) is incorrect. It is important that you check the database connection information inside of your script; most scripts will...