MySQL is installed on the front-end node and all current back-end nodes. If you are working with an application (web-based or otherwise), you should not need to modify your code to work with the clustered setup for MySQL.
There are, however, a couple of points to ensure that your database can be seen and is replicated across all nodes:
CREATE TABLE testTable (
i integer
) ENGINE=NDBCLUSTER;
If the three conditions are met above, then the data in the tables created
can be read and written to from any of the clustered nodes.