Skip to content

Latest commit

 

History

History

persistent-mysql

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

persistent-mysql

Build Status [Hackage] Hackage-Deps

A backend for the persistent database library for the MySQL database server.

Development

To run tests on this library, you will need to have a MySQL database server set up and running on your computer. The test suite expects to see a database named test with a username test and password test. You can set this up with roughly as follows:

mysql -u root # MySQL root username and password may vary
CREATE DATABASE test;
CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';
GRANT ALL on test.* TO 'test'@'localhost';