Communicating with the Server of a MySQL Client with AJAX
Looking for a comprehensive tutorial that shows you how to create a MySQL client application with the help of AJAX? Then this is the article you’ve been waiting for! Welcome to the concluding part of the series "Creating a MySQL Client with AJAX." In three parts, this series walks you through the process of building a simple application that allows you to run select, insert, update and delete SQL commands against a given MySQL database table, all from your own browser.
Communicating with the Server of a MySQL Client with AJAX - A final review: the MySQL application’s client module (Page 3 of 4 )
As I promised in the previous section, here is the full code listing that corresponds to the client module of the application. Please take a look at its source code:
All right, at this point I think that the two previous modules that were listed here are clear enough for you to recall how each of them fits into the general structure of this MySQL client application. So what is the next step? Well, as I said in the introduction, the only module that remains to build is the one related to executing queries on the server, in addition to sending back to the client the eventual results returned by SELECT statements.
Want to learn how the last module of the application will be created? Keep on reading.