The document contains 4 Java classes that demonstrate connecting to a MySQL database and performing basic CRUD (create, read, update, delete) operations. The first class DBTwoTables queries data from two tables and prints the results. The second class Db1 queries all rows from a single table. The third class DBUpdate updates table rows. The fourth class DBDelete deletes a table row. All classes establish a database connection, create SQL statements, execute the statements, handle exceptions, and close the connection.