incendio Well-Known Member Licensed User Longtime User Mar 27, 2014 #1 Hi guys, I follow the tutorial from : http://www.b4x.com/android/forum/th...r-connect-to-any-remote-db.31540/#post-183817 I want to display the select query result from command DBRequestManager.ExecuteQuery into a table or a WebView (prefereable) Is this possible? Thanks.
Hi guys, I follow the tutorial from : http://www.b4x.com/android/forum/th...r-connect-to-any-remote-db.31540/#post-183817 I want to display the select query result from command DBRequestManager.ExecuteQuery into a table or a WebView (prefereable) Is this possible? Thanks.
Erel B4X founder Staff member Licensed User Longtime User Mar 27, 2014 #2 Yes, it is possible. You should take DBUtils.ExecuteHtml code and reimplement it with the data that comes from DBRequestManager.ExecuteQuery. If it sounds too complicated then you can create a memory SQLite table and use DBUtils with it. http://www.b4x.com/android/forum/threads/29797/#content Upvote 0
Yes, it is possible. You should take DBUtils.ExecuteHtml code and reimplement it with the data that comes from DBRequestManager.ExecuteQuery. If it sounds too complicated then you can create a memory SQLite table and use DBUtils with it. http://www.b4x.com/android/forum/threads/29797/#content
incendio Well-Known Member Licensed User Longtime User Mar 27, 2014 #3 Erel said: Yes, it is possible. You should take DBUtils.ExecuteHtml code and reimplement it with the data that comes from DBRequestManager.ExecuteQuery. If it sounds too complicated then you can create a memory SQLite table and use DBUtils with it. http://www.b4x.com/android/forum/threads/29797/#content Click to expand... Thanks for your reply. So I have to modified DBRequestManager.ExecuteQuery to be able to call by WebView, sound to complex for me. Right know I don't even know diff between private and dim For SQLite in memory, hope that there is enough memory in the device. Upvote 0
Erel said: Yes, it is possible. You should take DBUtils.ExecuteHtml code and reimplement it with the data that comes from DBRequestManager.ExecuteQuery. If it sounds too complicated then you can create a memory SQLite table and use DBUtils with it. http://www.b4x.com/android/forum/threads/29797/#content Click to expand... Thanks for your reply. So I have to modified DBRequestManager.ExecuteQuery to be able to call by WebView, sound to complex for me. Right know I don't even know diff between private and dim For SQLite in memory, hope that there is enough memory in the device.