1,234
edits
Changes
no edit summary
{{Admon/obsolete}}
<pre>
1/19/2011 (Peter Liu)
Summary of reading the javadoc documentation of the SQLAdapter SQLSchemaManager class
A. The Structure of SQLAdapterSQLSchemaManager
- 4 inner classes, 1 inner interface
SQLAdatper (m_adapter), SQLAppender (m_appender), SQLConnection (m_connection)
* Note: What does SQLAppender do? It may might help us to understand what the append methods do in the SQLAdapter class.
- the constructor that takes a reference to an SQLAdapter:
B. A List of 18 Abstract Methods
* Note: Some of the abstract methods are implemented in the MySQLSchemaManager class to return null.
1. abstract void analyzeTable(Table table)
14. protected abstract SQLSchemaManager.SQLAppender getDynamicSQLAppender( java.lang.StringBuffer buf)
Wraps a string buffer with an appender for generating dynamic SQL.