Understanding SQL & Java Together: A Guide to SQLJ, JDBC, and Related Technologies

Earlier in this chapter, we promised you a dictionary that provides a correlation between the terms used in the Java object model and those used in the SQL object model. Table 7.3 contains the manifestation of that promise.
| Java term | SQL term |
|---|---|
| Class | Type (especially structured type) |
| Superclass | Supertype |
| Subclass | Subtype |
| Instance | Value |
| Object | Row in a table of a structured type |
| Primitive type | Predefined or built-in data type |
| Method | Method (also function and procedure) |
| Constructor | Initializer |