C Cranx Member Licensed User Longtime User Oct 29, 2011 #1 Hi, am quite new to programming and would really appreciate any assistance please. B4a is amazing! but... Any ideas on how to turn a sqllite table into xml and post it to a URL please... heeeelllllppp i'm stuck
Hi, am quite new to programming and would really appreciate any assistance please. B4a is amazing! but... Any ideas on how to turn a sqllite table into xml and post it to a URL please... heeeelllllppp i'm stuck
Erel B4X founder Staff member Licensed User Longtime User Oct 30, 2011 #2 There are two steps: - Create an XML string. - Upload the string. Uploading the string should be done with HttpUtils. You will need to build the XML string manually. Upvote 0
There are two steps: - Create an XML string. - Upload the string. Uploading the string should be done with HttpUtils. You will need to build the XML string manually.
C Cranx Member Licensed User Longtime User Nov 4, 2011 #3 how long can an xml string be? Erel, thanks so much! but.. Is there a maximum length an xml string can be? Sorry, just a self taught programmer Upvote 0
how long can an xml string be? Erel, thanks so much! but.. Is there a maximum length an xml string can be? Sorry, just a self taught programmer
Erel B4X founder Staff member Licensed User Longtime User Nov 6, 2011 #4 There is no hard limit. You should probably use StringBuilder instead of a regular string. StringBuilder can dynamically grow. Upvote 0
There is no hard limit. You should probably use StringBuilder instead of a regular string. StringBuilder can dynamically grow.