I need to export my dataset (from access database) to xml
I have used datatable.writexml which writes the xml files successfully
however, for boolean type (or "Yes/No" type) columns inside my access database, writexml writes them as
<ShowInfo>true</ShowInfo>
but wat I need is the hashcode which is something like
<ShowInfo>1</ShowInfo>
It's interesting that when I use the "export XML" option inside access, it writes the hashcode "1" instead of "true"
is there any way to implement this feature?
please note that for my current task, I'm not allowed to change the database table column, so "ShowInfo" still has to be a "Yes/No"
but I need write 1/0 instead of true/false
Cheers