Currency
 American Dollar   British Pound 

2.1.3. Database support

In order to run Viart products you will need a database. If you do not have one already, you must create one before proceeding. We recommend to use MySQL database as it is the most widely used database.
ViArt Shop ManualViArt Shop Manual
2.1.3. Database support
Prev Index Next
In order to run any of Viart products you will need a database. If you do not have one already, you must create one before proceeding.

As MySQL seems to be the most popular database we would advise using it (http://www.mysql.org/).

In MySQL use the "mysqladmin" program like this:

mysqladmin -uuser -ppassword create mydb

Ensure that you have a user access for the database which has rights to select, insert, update and delete.

A MySQL Grant statement to do this for a user would look like this:

GRANT
  select, insert, update, create, alter, delete, drop
ON
 database.*
TO
 user@localhost
IDENTIFIED BY
 'password';


Prev Index Next