The MySQL connector enables LoopBack applications to connect to MySQL data sources.Note: This page was generated from the loopback-connector-mysql/README.md.

Important: The MySQL connector requires MySQL 5.0+.

loopback-connector-mysql

MySQL is a popular open-source relational database management system (RDBMS). The loopback-connector-mysql module provides the MySQL connector module for the LoopBack framework.

See also LoopBack MySQL Connector in LoopBack documentation.NOTE: The MySQL connector requires MySQL 5.0+.

Installation

In your application root directory, enter this command to install the connector:

  1. npm install loopback-connector-mysql --save

This installs the module from npm and adds it as a dependency to the application’s package.json file.

If you create a MySQL data source using the data source generator as described below, you don’t have to do this, since the generator will run npm install for you.

Creating a MySQL data source

Use the Data source generator to add a MySQL data source to your application.The generator will prompt for the database server hostname, port, and other settingsrequired to connect to a MySQL database. It will also run the npm install command above for you.

The entry in the application’s /server/datasources.json will look like this:

  1. "mydb": {
  2. "name": "mydb",
  3. "connector": "mysql",
  4. "host": "myserver",
  5. "port": 3306,
  6. "database": "mydb",
  7. "password": "mypassword",
  8. "user": "admin"
  9. }

Edit datasources.json to add any other additional properties that you require.

Properties

PropertyTypeDescription
collationStringDetermines the charset for the connection. Default is utf8_general_ci.
connectorStringConnector name, either “loopback-connector-mysql” or “mysql”.
connectionLimitNumberThe maximum number of connections to create at once. Default is 10.
databaseStringDatabase name
debugBooleanIf true, turn on verbose mode to debug database queries and lifecycle.
hostStringDatabase host name
passwordStringPassword to connect to database
portNumberDatabase TCP port
socketPathStringThe path to a unix domain socket to connect to. When used host and port are ignored.
supportBigNumbersBooleanEnable this option to deal with big numbers (BIGINT and DECIMAL columns) in the database. Default is false.
timeZoneStringThe timezone used to store local dates. Default is ‘local’.
urlStringConnection URL of form mysql://user:password@host/db. Overrides other connection settings.
usernameStringUsername to connect to database

NOTE: In addition to these properties, you can use additional parameters supported by node-mysql.

Type mappings

See LoopBack types for details on LoopBack’s data types.

LoopBack to MySQL types

LoopBack TypeMySQL Type
String/JSONVARCHAR
TextTEXT
NumberINT
DateDATETIME
BooleanTINYINT(1)
GeoPoint objectPOINT
Custom Enum type(See Enum below)ENUM

MySQL to LoopBack types

MySQL TypeLoopBack Type
CHARString
BIT(1)CHAR(1)TINYINT(1)Boolean
VARCHARTINYTEXTMEDIUMTEXTLONGTEXTTEXTENUMSETString
TINYBLOBMEDIUMBLOBLONGBLOBBLOBBINARYVARBINARYBITNode.js Buffer object
TINYINTSMALLINTINTMEDIUMINTYEARFLOATDOUBLENUMERICDECIMALNumberFor FLOAT and DOUBLE, see Floating-point types.For NUMERIC and DECIMAL, see Fixed-point exact value types
DATETIMESTAMPDATETIMEDate

NOTE as of v3.0.0 of MySQL Connector, the following flags were introduced:

  • treatCHAR1AsStringdefault false - treats CHAR(1) as a String instead of a Boolean
  • treatBIT1AsBitdefault true - treats BIT(1) as a Boolean instead of a Binary
  • treatTINYINT1AsTinyIntdefault true - treats TINYINT(1) as a Boolean instead of a Number

Using the datatype field/column option with MySQL

Use the mysql model property to specify additional MySQL-specific properties for a LoopBack model.

For example:

/common/models/model.json

  1. "locationId":{
  2. "type":"String",
  3. "required":true,
  4. "length":20,
  5. "mysql":
  6. {
  7. "columnName":"LOCATION_ID",
  8. "dataType":"VARCHAR",
  9. "dataLength":20,
  10. "nullable":"N"
  11. }
  12. }

You can also use the dataType column/property attribute to specify what MySQL column type to use for many loopback-datasource-juggler types. The following type-dataType combinations are supported:

  • Number
  • integer
  • tinyint
  • smallint
  • mediumint
  • int
  • bigintUse the limit option to alter the display width. Example:
  1. { userName : {
  2. type: String,
  3. dataType: 'char',
  4. limit: 24
  5. }
  6. }

Default Clause/Constant

Use the default property to have MySQL handle setting column DEFAULT value.

  1. "status": {
  2. "type": "string",
  3. "mysql": {
  4. "default": "pending"
  5. }
  6. },
  7. "number": {
  8. "type": "number",
  9. "mysql": {
  10. "default": 256
  11. }
  12. }

For the date or timestamp types use CURRENT_TIMESTAMP or now:

  1. "last_modified": {
  2. "type": "date",
  3. "mysql": {
  4. "default":"CURRENT_TIMESTAMP"
  5. }
  6. }

NOTE: The following column types do NOT supported MySQL Default Values:

  • BLOB
  • TEXT
  • GEOMETRY
  • JSON

Floating-point types

For Float and Double data types, use the precision and scale options to specify custom precision. Default is (16,8). For example:

  1. { average :
  2. { type: Number,
  3. dataType: 'float',
  4. precision: 20,
  5. scale: 4
  6. }
  7. }

Fixed-point exact value types

For Decimal and Numeric types, use the precision and scale options to specify custom precision. Default is (9,2).These aren’t likely to function as true fixed-point.

Example:

  1. { stdDev :
  2. { type: Number,
  3. dataType: 'decimal',
  4. precision: 12,
  5. scale: 8
  6. }
  7. }

Other types

Convert String / DataSource.Text / DataSource.JSON to the following MySQL types:

  • varchar
  • char
  • text
  • mediumtext
  • tinytext
  • longtextExample:
  1. { userName :
  2. { type: String,
  3. dataType: 'char',
  4. limit: 24
  5. }
  6. }

Example:

  1. { biography :
  2. { type: String,
  3. dataType: 'longtext'
  4. }
  5. }

Convert JSON Date types to datetime or timestamp

Example:

  1. { startTime :
  2. { type: Date,
  3. dataType: 'timestamp'
  4. }
  5. }

Enum

Enums are special. Create an Enum using Enum factory:

  1. var MOOD = dataSource.EnumFactory('glad', 'sad', 'mad');
  2. MOOD.SAD; // 'sad'
  3. MOOD(2); // 'sad'
  4. MOOD('SAD'); // 'sad'
  5. MOOD('sad'); // 'sad'
  6. { mood: { type: MOOD }}
  7. { choice: { type: dataSource.EnumFactory('yes', 'no', 'maybe'), null: false }}

Discovery and auto-migration

Model discovery

The MySQL connector supports model discovery that enables you to create LoopBack modelsbased on an existing database schema using the unified database discovery API. For more information on discovery, see Discovering models from relational databases.

Auto-migration

The MySQL connector also supports auto-migration that enables you to create a database schemafrom LoopBack models using the LoopBack automigrate method.

For more information on auto-migration, see Creating a database schema from models for more information.

Auto-migrate/Auto-update models with foreign keys

MySQL handles the foreign key integrity of the related models upon auto-migrate or auto-update operation. It first deletes any related models before calling delete on the models with the relationship.

Example:

model-definiton.json

  1. {
  2. "name": "Book",
  3. "base": "PersistedModel",
  4. "idInjection": false,
  5. "properties": {
  6. "bId": {
  7. "type": "number",
  8. "id": true,
  9. "required": true
  10. },
  11. "name": {
  12. "type": "string"
  13. },
  14. "isbn": {
  15. "type": "string"
  16. }
  17. },
  18. "validations": [],
  19. "relations": {
  20. "author": {
  21. "type": "belongsTo",
  22. "model": "Author",
  23. "foreignKey": "authorId"
  24. }
  25. },
  26. "acls": [],
  27. "methods": {},
  28. "foreignKeys": {
  29. "authorId": {
  30. "name": "authorId",
  31. "foreignKey": "authorId",
  32. "entityKey": "aId",
  33. "entity": "Author",
  34. "onUpdate": "restrict",
  35. "onDelete": "restrict"
  36. }
  37. }
  38. }
  1. {
  2. "name": "Author",
  3. "base": "PersistedModel",
  4. "idInjection": false,
  5. "properties": {
  6. "aId": {
  7. "type": "number",
  8. "id": true,
  9. "required": true
  10. },
  11. "name": {
  12. "type": "string"
  13. },
  14. "dob": {
  15. "type": "date"
  16. }
  17. },
  18. "validations": [],
  19. "relations": {},
  20. "acls": [],
  21. "methods": {}
  22. }

boot-script.js

  1. module.exports = function(app) {
  2. var mysqlDs = app.dataSources.mysqlDS;
  3. var Book = app.models.Book;
  4. var Author = app.models.Author;
  5. // first autoupdate the `Author` model to avoid foreign key constraint failure
  6. mysqlDs.autoupdate('Author', function(err) {
  7. if (err) throw err;
  8. console.log('\nAutoupdated table `Author`.');
  9. mysqlDs.autoupdate('Book', function(err) {
  10. if (err) throw err;
  11. console.log('\nAutoupdated table `Book`.');
  12. // at this point the database table `Book` should have one foreign key `authorId` integrated
  13. });
  14. });
  15. };

Breaking Changes with GeoPoint since 5.x

Prior to loopback-connector-mysql@5.x, MySQL connector was saving and loading GeoPoint properties from the MySQL database in reverse.MySQL expects values to be POINT(X, Y) or POINT(lng, lat), but the connector was saving them in the opposite order(i.e. POINT(lat,lng)).If you have an application with a model that has a GeoPoint property using previous versions of this connector, you can migrate your modelsusing the following programmatic approach:NOTE Please back up the database tables that have your application data before performing any of the steps.

  • Create a boot script under server/boot/ directory with the following:```js‘use strict’;module.exports = function(app) { function findAndUpdate() { var teashop = app.models.teashop; //find all instances of the model we’d like to migrate teashop.find({}, function(err, teashops) { teashops.forEach(function(teashopInstance) { //what we fetch back from the db is wrong, so need to revert it here var newLocation = {lng: teashopInstance.location.lat, lat: teashopInstance.location.lng}; //only update the GeoPoint property for the model teashopInstance.updateAttribute(‘location’, newLocation, function(err, inst) { if (err) console.log(‘update attribute failed ‘, err); else console.log(‘updateAttribute successful’); }); }); }); }findAndUpdate();};
  1. 2. Run the boot script by simply running your application or `node .`
  2. For the above example, the model definition is as follows:
  3. ```json
  4. {
  5. "name": "teashop",
  6. "base": "PersistedModel",
  7. "idInjection": true,
  8. "options": {
  9. "validateUpsert": true
  10. },
  11. "properties": {
  12. "name": {
  13. "type": "string",
  14. "default": "storename"
  15. },
  16. "location": {
  17. "type": "geopoint"
  18. }
  19. },
  20. "validations": [],
  21. "relations": {},
  22. "acls": [],
  23. "methods": {}
  24. }

Running tests

Own instance

If you have a local or remote MySQL instance and would like to use that to run the test suite, use the following command:

  • Linux
  1. MYSQL_HOST=<HOST> MYSQL_PORT=<PORT> MYSQL_USER=<USER> MYSQL_PASSWORD=<PASSWORD> MYSQL_DATABASE=<DATABASE> CI=true npm test
  • Windows
  1. SET MYSQL_HOST=<HOST> SET MYSQL_PORT=<PORT> SET MYSQL_USER=<USER> SET MYSQL_PASSWORD=<PASSWORD> SET MYSQL_DATABASE=<DATABASE> SET CI=true npm test

Docker

If you do not have a local MySQL instance, you can also run the test suite with very minimal requirements.

  • Assuming you have Docker installed, run the following script which would spawn a MySQL instance on your local:
  1. source setup.sh <HOST> <PORT> <USER> <PASSWORD> <DATABASE>

where <HOST>, <PORT>, <USER>, <PASSWORD> and <DATABASE> are optional parameters. The default values are localhost, 3306, root, pass and testdb respectively.

  • Run the test:
  1. npm test

Tags: connectors