简体   繁体   中英

insert empty date on unitils dataset

I got error similar to this: Unitils dataset - insert into sybase datetime column

My case is that need to insert a date value that is empty. Empty String does not do the thing. Can anyone help me?

If you leave your date element off of the row definition, it won't add anything in that field. So with a table definition of:

CREATE TABLE Table (
  id          INTEGER,
  name        VARCHAR,
  birthDate   DATE
);

create a row like this:

<table id="3" name="Katie"/>
<table id="4" name="Christie" birthDate="2001-04-22"/>

to load an empty date in ID 3.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM