SQL query on client side
SQL query on client side
Hello.
I work with server side processing, I have different data filters so I think to form SQL query on client side, and send it to server_processing.php
How can I do it? fnServerParams? And how I can send the whole query?
Second question I want to export data to excel (it is one of causes that I need my SQL query on the client side)
There is no tools for export to Excel for server side if I understand correctly.
Thanks!
Sorry for my English.
I work with server side processing, I have different data filters so I think to form SQL query on client side, and send it to server_processing.php
How can I do it? fnServerParams? And how I can send the whole query?
Second question I want to export data to excel (it is one of causes that I need my SQL query on the client side)
There is no tools for export to Excel for server side if I understand correctly.
Thanks!
Sorry for my English.
This discussion has been closed.
Replies
For Excel output using tabletools I believe it will output what rows are returned by the server. So, if you need a lot of rows in the excel output you should return them all from your server side processing. If you are talking about thousands of records though you should look at a more efficient way to output the data you need.
I have more then 10 000 rows.
Server side return just part of rows to client side on 1 page, not all as i understand. How I can export to excel all rows at once?