| How to access my database online? |
Go to the PHPMyAdmin section of the Control Panel and click on the database name in order to proceed to the login screen. Then use the following:
Username: database_name
Password: the database password you have assigned
|
| Is MySql database compatible with FrontPage? |
No, it is not.
|
| What is MySQL ? |
MySQL is a relational database management system (RDBMS).
|
| Do you support InnoDB storage engine? |
InnoDB storage engine is not being supported.
|
| Do you allow remote MySQL connections ? |
Remote MySQL connections are disabled. You will not be able to connect from an external host. Local connections are the only ones that are allowed.
|
| Do you support Microsoft SQL or Microsoft Access databases? |
Microsoft SQL and Microsoft Access are property products which are not supported under Linux. There are workarounds but all of them come at high price - the resources required for their implementation are too high for production server environment.
|
| What is a database? |
A database is a structured collection of records or data that is stored in a computer system. The structure and the organization of the data are defined by the database model which in most cases is a relational model.
|
| What do I need to connect to a database ? |
In order to connect to a database you will need:
database name
database user
database pass
database host
database port
This information is available in the MySQL Databases section of the control panel. Please note that the database name = database user , i.e. whenever you add a MySQL database a MySQL user is created with the same name and this user is automatically added to the database.
The database host is the name of the server on which your hosting account is located.
The database pass is defined by you while you add a MySQL database.
The database port is 3306.
|
| What is SQL? |
SQL is a database language designed for the retrieval and management of data in relational database management systems (RDBMS).
|
| What is a Database Engine? |
A database engine is the underlying software component that a database management system uses to create, retrieve, update and delete data from a database.
|
| What Database Engines do you support? |
We support:
MyISAM - Default engine as of MySQL 3.23 with great performance
MEMORY - Hash based, stored in memory, useful for temporary tables
ARCHIVE - Archive storage engine
CSV - CSV storage engine
FEDERATED - Federated MySQL storage engine
MRG_MYISAM - Collection of identical MyISAM tables
|
| How do I create a MySQL database ? |
You can add a MySQL database from the MySQL Databases section of the control panel. Enter the desired database name, enter the desired password and finally click on the Add SQL Database button.
|
|