Git Product home page Git Product logo

fusio-adapter-sql's People

Contributors

chriskapp avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

fusio-adapter-sql's Issues

Default values not being set on insert

Hello guys!
I think i found a problem in the Action/SqlActionAbstract.php file, related to default value fields when inserting a new record, in particular, i'm using a datetime field that with a default value set to CURRENT_TIMESTAMP.

Use case:

Table

  • id integer
  • title varchar
  • created_at datetime default CURRENT_TIMESTAMP

My model

  • id
  • title

The problem: On insert, the 'created_at' field should use the default value (CURRENT_TIMESTAMP) but it was set to NULL.

Seems that the 'getData' method does not manage properly the default values, so when inserting a new record the field should be set to CURRENT_TIMESTAMP if the column evaluated is not part of the request... posible solution with comments:

inside the foreach:

if ($column->getAutoincrement()) {
                // in case the column is autoincrement we dont need it
                continue;
            }

            $value = null;
            if ($body->hasProperty($column->getName())) {

	        // field is in the request, set the value
                $value = $body->getProperty($column->getName()); 

            } elseif (!$validateNull) {
	        // field is not in the request, but we don't care null values in the request (but on insert this is TRUE)
                continue; 

            } elseif ($column->getDefault()) {
	        // my solution --> field is not in the request,
	 	// but if the column has a default value set we can continue to the next column
                continue; 
            } 

I tested it and it is working now in my installation, don't know if this could be helpfull, what do you think guys?

Setup details:
PHP 7.4 / Apache
Mysql 8.0.23-0ubuntu0.20.04.1 (Ubuntu)

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.