Skip to content

Commit

Permalink
- Adjust Date attribute values in the sampledata_1_0_10.xml to use IS…
Browse files Browse the repository at this point in the history
…O 8601 format. (Fixes #535)
  • Loading branch information
nairdo committed Nov 7, 2014
1 parent bfaae93 commit 75d558f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Documentation/sampledata_1_0_10.xml
Expand Up @@ -27,8 +27,8 @@
photoUrl="http://storage.rockrms.com/sampledata/person-images/decker_ted.jpg"
homePhone="6235553322" mobilePhone="6235553322" workPhone="6235552444" graduationDate="1/1/1994">
<attributes>
<attribute BaptismDate="9/13/2001"/>
<attribute FirstVisit="12/15/2012"/>
<attribute BaptismDate="2001-09-13"/>

This comment has been minimized.

Copy link
@azturner

azturner Nov 7, 2014

Contributor

Think these need to include the time so that the AttributeValue's ValueAsDateTime computed column can correctly parse them into date values (e.g. 2001-09-13T00:00:00

<attribute FirstVisit="2012-12-15"/>
<attribute Employer="Rock Solid Church"/>
<attribute Position="Outreach Pastor"/>
</attributes>
Expand All @@ -52,7 +52,7 @@
photoUrl="http://storage.rockrms.com/sampledata/person-images/decker_cindy.png"
homePhone="6235553323" mobilePhone="6235553323" workPhone="">
<attributes>
<attribute FirstVisit="9/13/2001"/>
<attribute FirstVisit="2001-09-13"/>
</attributes>
<logins>
<login userName="cdecker"/>
Expand Down

1 comment on commit 75d558f

@nairdo
Copy link
Member Author

@nairdo nairdo commented on 75d558f Nov 7, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, for the sake of anyone looking at this with us, @azturner and I did a quick walk through and determined that the ValueAsDateTime (as of > 1.1.2) will include 00:00 time portion as seen here: "2001-09-13 00:00:00.000"

Please sign in to comment.