tdocs2 Well-Known Member Licensed User Longtime User Dec 8, 2015 #1 Greetings. Thank you in advance for your generosity and replies. I have to read (no updates) a SQLite DB created in B4J in a VB.net program. The dates in the SQLite DB are stored in ticks using DateTime. Does anyone know of or have a sub to allow me to read the JAVA (used by B4x) date format in VB.net? Best regards. Sandy
Greetings. Thank you in advance for your generosity and replies. I have to read (no updates) a SQLite DB created in B4J in a VB.net program. The dates in the SQLite DB are stored in ticks using DateTime. Does anyone know of or have a sub to allow me to read the JAVA (used by B4x) date format in VB.net? Best regards. Sandy
Erel B4X founder Staff member Licensed User Longtime User Dec 9, 2015 #2 You can always store the dates in their string representation and then parse them in your .Net app. Code that converts B4X date to OLE date: https://www.b4x.com/android/forum/t...-double-in-b4a-date-format.53090/#post-332523 You can do something similar in your .Net app and then convert it to a standard DateTime. Upvote 0
You can always store the dates in their string representation and then parse them in your .Net app. Code that converts B4X date to OLE date: https://www.b4x.com/android/forum/t...-double-in-b4a-date-format.53090/#post-332523 You can do something similar in your .Net app and then convert it to a standard DateTime.