Coder Social home page Coder Social logo

Comments (1)

daisukenishino avatar daisukenishino commented on May 23, 2024

Additinal information

Under the circumstances, "DaoGen_Tool" generates the sql statement as follows.

<?xml version="1.0" encoding="UTF-8" ?>
<ROOT>
-- DaoCategories_D1_Insert
-- 2013/1/10 日立 太郎
INSERT INTO 
  [Categories]
    (
      <DELCMA>
        <INSCOL name="CategoryID">[CategoryID],</INSCOL>
        <INSCOL name="CategoryName">[CategoryName],</INSCOL>
        <INSCOL name="Description">[Description],</INSCOL>
        <INSCOL name="Picture">[Picture],</INSCOL>
      </DELCMA>
    )
VALUES
    (
      <DELCMA>
        <IF>@CategoryID,</IF>
        <IF>@CategoryName,</IF>
        <IF>@Description,</IF>
        <IF>@Picture,</IF>
      </DELCMA>
    )
</ROOT>

For example, if the user substitutes null value for parameter "@CategoryID", the exception occurs. This is because ELSE tag does not exist in IF tag. Therefore, please revise "DaoGen_Tool" to generate ELSE tag in IF tag.

Check situations

And, please perform an operation check in the following two situations.

  • "timestamp" column exists in the table.
  • "timestamp" column does not exist in the table.

Check Items

  • Does modified "DaoGen_Tool" generate ELSE tag normally?
  • When you substitute various value for parameter, does modified "DaoGen_Tool" return expected result?

Example 1

  • You substitute non-null value for all parameters.
    (I expect that non-null value is inserted in all columns.)

Example 2

  • You substitute DBNull.Value for some parameters.
    (I expect that null value is inserted in the columns.)

Example 3

  • You substitute null value for some parameters.
    (I expect that default value of the columns is inserted in the columns. And the information of the column does not appear in generated "INSERT statement".)

from opentouryo.

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.