Return to "Sphera"


View the quick start guide for this product

Available subcategories under Database & Programming

Miscellaneous (3) Additional Programming Languages (2)
CGI & Perl SCripts (1) PHP (3)
MySQL (4) Troubleshooting (1)


Most popular articles under category Database & Programming

Importing MySQL Database Content
MySQL allows you to import/export text files containing database entries in a standardized format. By creating a MySQL Dump file, you will have an exact copy of your database in a single file; this file can be saved for emergency purposes and can be imported back in to MySQL to...

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...

Installing FastCGI Support
Some applications, such as those written in Ruby for use in the Ruby on Rails environment, can be optimized for use with FastCGI. Using FastCGI with your application allows the application to respond quicker and serve information faster than a regular CGI program by accessing your code through a persistant...

Connecting to Databases with PHP
PHP and MySQL are extremely easy to use together; most tutorials and books written regarding PHP should have a section explaining the connection between the MySQL database and PHP. A simple MySQL connection can be opened in PHP using the following code: $connection = mysql_pconnect("localhost","username","password") or print "Error connecting to the...

Activating the ASP Programming Language
Microsoft's Active Server Pages programming language has been made available on Linux-based servers, like the one in use by OpenSourceHost, through the use of a software package called Sun Java System Active Server Pages Server (formerly ChiliSoft ASP). This package allows many ASP programs to function on a Linux-based server,...