| 1 to 5 of 5 |
Note: The search term 'mysql' was dropped from your query as it returns too many results, please narrow your search terms
1. MySQL :: MySQL 5.1 Reference Manual :: 17.4.7 Manipulating Queries with read_query()
17.4.7. Manipulating Queries with read_query() The read_query() function is called once for each query submitted by the client and accepts a single argument, the query packet that was provided. To access the content of the packet you must parse the packet contents manually. For example, you can intercept a query packet and print out the contents using the following function definition: function read_query( packet ) if packet:byte() == proxy.COM_QUERY then print("we got a normal query: " .. packet:sub(2)) en
» http://dev.mysql.com/doc/refman/5.1/en/mysql-proxy-scripting-read-query.html
2. MySQL :: MySQL 5.0 Reference Manual :: 26.4.7 Manipulating Queries with read_query()
26.4.7. Manipulating Queries with read_query() The read_query() function is called once for each query submitted by the client and accepts a single argument, the query packet that was provided. To access the content of the packet you must parse the packet contents manually. For example, you can intercept a query packet and print out the contents using the following function definition: function read_query( packet ) if packet:byte() == proxy.COM_QUERY then print("we got a normal query: " .. packet:sub(2)) en
» http://dev.mysql.com/doc/refman/5.0/en/mysql-proxy-scripting-read-query.html
3. MySQL :: MySQL 6.0 Reference Manual :: 29.4.7 Manipulating Queries with read_query()
29.4.7. Manipulating Queries with read_query() The read_query() function is called once for each query submitted by the client and accepts a single argument, the query packet that was provided. To access the content of the packet you must parse the packet contents manually. For example, you can intercept a query packet and print out the contents using the following function definition: function read_query( packet ) if packet:byte() == proxy.COM_QUERY then print("we got a normal query: " .. packet:sub(2)) en
» http://dev.mysql.com/doc/refman/6.0/en/mysql-proxy-scripting-read-query.html
4. MySQL :: MySQL 5.1 with Maria Reference Manual :: 28.4.7 Manipulating Queries with read_query()
28.4.7. Manipulating Queries with read_query() The read_query() function is called once for each query submitted by the client and accepts a single argument, the query packet that was provided. To access the content of the packet you must parse the packet contents manually. For example, you can intercept a query packet and print out the contents using the following function definition: function read_query( packet ) if packet:byte() == proxy.COM_QUERY then print("we got a normal query: " .. packet:sub(2)) en
» http://dev.mysql.com/doc/refman/5.1-maria/en/mysql-proxy-scripting-read-query.html
5. MySQL :: MySQL 3.23, 4.0, 4.1 Reference Manual :: 19.4.7 Manipulating Queries with read_query()
19.4.7. Manipulating Queries with read_query() The read_query() function is called once for each query submitted by the client and accepts a single argument, the query packet that was provided. To access the content of the packet you must parse the packet contents manually. For example, you can intercept a query packet and print out the contents using the following function definition: function read_query( packet ) if packet:byte() == proxy.COM_QUERY then print("we got a normal query: " .. packet:sub(2)) en
» http://dev.mysql.com/doc/refman/4.1/en/mysql-proxy-scripting-read-query.html
| 1 to 5 of 5 |