F fpdianzen Member Licensed User Longtime User Mar 14, 2013 #1 Hi Guys. I need help regarding my application... since i know that this works with my previous connection with MSSQL http://www.b4x.com/forum/basic4android-getting-started-tutorials/13166-connect-android-ms-sql-server-tutorial.html#post74199 will this also work if i will access a PHP Get statement, considering that the both work the same URL type of passing of query? here is my sample URL http://khsalesandinventory.comyr.com/mysqlquerytoandroid.php?query=select * from tbl_user Last edited: Mar 14, 2013
Hi Guys. I need help regarding my application... since i know that this works with my previous connection with MSSQL http://www.b4x.com/forum/basic4android-getting-started-tutorials/13166-connect-android-ms-sql-server-tutorial.html#post74199 will this also work if i will access a PHP Get statement, considering that the both work the same URL type of passing of query? here is my sample URL http://khsalesandinventory.comyr.com/mysqlquerytoandroid.php?query=select * from tbl_user
Erel B4X founder Staff member Licensed User Longtime User Mar 16, 2013 #2 The problem with passing the query as a GET parameter is that you need to url encode it. You can use StringUtils for that (or HttpJob.Download2). However in some cases it will still not be enough. Upvote 0
The problem with passing the query as a GET parameter is that you need to url encode it. You can use StringUtils for that (or HttpJob.Download2). However in some cases it will still not be enough.