magnetfruit_mysql_database_handler

Avocadorm database handler for MySQL.


License
GPL-3.0

Documentation

MySQL Database Handler

Avocadorm database handler for a MySQL database. It uses SQLJocky to talk to the database.

Creating a database handler

The information required by the MySqlDatabaseHandler constructor is

  • the IP and port of the database server
  • the database name
  • the user and password under which the operations will be made

For example:

var databaseHandler = new MySqlDatabaseHandler('localhost', 3306, 'db_name', 'guest', 'password');

The database handler instance can then be used to construct the avocadorm.

var avocadorm = new Avocadorm(databaseHandler);

Dependency

Add the dependency in your pubspec.yaml. For example:

dependencies:
  magnetfruit_mysql_database_handler: ">=0.1.0 <0.2.0"