|
|
|
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';
|
|
|
|
|