P Pisinho Active Member Licensed User Longtime User Apr 16, 2014 #1 Hi, I have a RDC server on Linux which send a query to SQL Server. All OK. In config.properties i have put a query command (SELECT). It's possible via HTTP browse invoke a query command type of: http://10.0.0.11:17178/?method=query&name=select_animal Thanks in advance
Hi, I have a RDC server on Linux which send a query to SQL Server. All OK. In config.properties i have put a query command (SELECT). It's possible via HTTP browse invoke a query command type of: http://10.0.0.11:17178/?method=query&name=select_animal Thanks in advance
Erel B4X founder Staff member Licensed User Longtime User Apr 16, 2014 #2 No. However you can implement a similar solution with B4J and then you will be able to access it any way you like. [Server] Data Collection Solution - Device, Desktop and Web reports Upvote 0
No. However you can implement a similar solution with B4J and then you will be able to access it any way you like. [Server] Data Collection Solution - Device, Desktop and Web reports
P Pisinho Active Member Licensed User Longtime User Apr 16, 2014 #3 Erel said: No. However you can implement a similar solution with B4J and then you will be able to access it any way you like. [Server] Data Collection Solution - Device, Desktop and Web reports Click to expand... Excuse me, but what is the # command section in the file config.properites ? Thanks Upvote 0
Erel said: No. However you can implement a similar solution with B4J and then you will be able to access it any way you like. [Server] Data Collection Solution - Device, Desktop and Web reports Click to expand... Excuse me, but what is the # command section in the file config.properites ? Thanks
Erel B4X founder Staff member Licensed User Longtime User Apr 17, 2014 #4 These are comments. Upvote 0
P Pisinho Active Member Licensed User Longtime User Apr 17, 2014 #5 Erel said: These are comments. Click to expand... Yes, I know # symbol. The section 'command' i only used with DBrequestmanager class ? Upvote 0
Erel said: These are comments. Click to expand... Yes, I know # symbol. The section 'command' i only used with DBrequestmanager class ?
Erel B4X founder Staff member Licensed User Longtime User Apr 17, 2014 #6 The SQL commands are declared in the config file. You can then call the command name with DBRequestManager. Upvote 0
The SQL commands are declared in the config file. You can then call the command name with DBRequestManager.
P Pisinho Active Member Licensed User Longtime User Apr 17, 2014 #7 Thanks... Erel, excuse me... I find a tutorial or example for populated a grid with response a my query... Where I Find ? thanks Upvote 0
Thanks... Erel, excuse me... I find a tutorial or example for populated a grid with response a my query... Where I Find ? thanks
Erel B4X founder Staff member Licensed User Longtime User Apr 17, 2014 #8 It should be quite simple to show the data in a table with this class: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content You just need to go over each item in result.rows and it to the table. Upvote 0
It should be quite simple to show the data in a table with this class: http://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/#content You just need to go over each item in result.rows and it to the table.