Giter VIP home page Giter VIP logo

Comments (5)

raymondfeng avatar raymondfeng commented on August 16, 2024

We need to differentiate between undefined and null. If a property is set to null, we should pass NULL to MySQL. If a property is not present or undefined, we should skip the column. Can you create a patch?

from loopback-connector-mysql.

rnybergh avatar rnybergh commented on August 16, 2024

Wouldn't the above fix remove also the values that have been explicitly set to null?

from loopback-connector-mysql.

raymondfeng avatar raymondfeng commented on August 16, 2024

Wouldn't the above fix remove also the values that have been explicitly set to null?

@rnybergh That's what I'm trying to avoid.

from loopback-connector-mysql.

rnybergh avatar rnybergh commented on August 16, 2024

Wouldn't this do it?

if('NULL'!== value && data[key]!==undefined) {
   fields.push(self.columnEscaped(model, key) + ' = ' + value);
}

from loopback-connector-mysql.

ssh24 avatar ssh24 commented on August 16, 2024

This issue should be fixed on the latest version of the connector. The user can specify a default value of a property on the model definition, and the create method will honour the default value if the property is not specified upon the create request.

Here is a sample code snippet:

model-definition.json

{
  "name": "Employee",
  "base": "PersistedModel",
  "idInjection": false,
  "options": {
    "validateUpsert": true
  },
  "properties": {
    "id": {
      "type": "number",
      "required": true,
      "id": true
    },
    "role": {
      "type": "string",
      "default": "Software Developer"
    },
    "name": {
      "type": "string",
      "required": true
    }
  },
  "validations": [],
  "relations": {},
  "acls": [],
  "methods": {}
}

boot-script.js

'use strict';
var util = require('util');

module.exports = function(app) {
  var db = app.dataSources.mysqlDs;
  var Employee = app.models.Employee;

  db.automigrate(function(err) {
    if (err) throw err;
    Employee.create({id: 1, name: 'Bob'}, function(err, result) {
      if (err) throw err;
      console.log('\nCreated instance: ' + util.inspect(result, 4));
    });
  });
};

console output

sakibs-mac:mysql-51 ssh$ node .
Web server listening at: http://0.0.0.0:3000
Browse your REST API at http://0.0.0.0:3000/explorer

Created instance: { id: 1, name: 'Bob', role: 'Software Developer' }

database output

mysql> select * from Employee;
+----+--------------------+------+
| id | role               | name |
+----+--------------------+------+
|  1 | Software Developer | Bob  |
+----+--------------------+------+

Closing this issue as a result. Feel free to reopen if needed.

from loopback-connector-mysql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.