While finishing the NGS Policy XML - database verification, I uncorked nasty application behavior. Consider:
<party>
<name>Acme</name>
<address>Address1</address>
<address>Address2</address>
</party>
Normally this XML is transformed into:
Party table | |
---|---|
PartyID | Name |
1 | Acme |
Address table | ||
---|---|---|
AddressID | PartyID | Address |
1 | 1 | Address1 |
2 | 1 | Address2 |
But nooooooo, the wise developer did this instead:
Party table | |||
---|---|---|---|
PartyID | Name | Addr1 | Addr2 |
1 | Acme | Address1 | Address2 |
Now I have to think about catching the wrench before it hits the wheels.
Anyway, mum bought a big painting on Sunday. Since it didn't fit into Lisa's car, I was volunteered to transport the items.
I managed to get some rest around 10PM.
Long day - it is.
No comments:
Post a Comment