Java Doc for DbLoader.java in  » ERP-CRM-Financial » sakai » org » theospi » portfolio » util » db » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ERP CRM Financial » sakai » org.theospi.portfolio.util.db 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.theospi.portfolio.util.db.DbLoader

DbLoader
public class DbLoader (Code)

A tool to set up a OSPI database. This tool was created so that OSPI developers would only have to maintain a single set of xml documents to define the OSPI database schema and data. Previously it was necessary to maintain different scripts for each database we wanted to support.

DbLoader reads the generic types that are specified in tables.xml and tries to map them to local types by querying the database metadata via methods implemented by the JDBC driver. Fallback mappings can be supplied in dbloader.xml for cases where the JDBC driver is not able to determine the appropriate mapping. Such cases will be reported to standard out.

An xsl transformation is used to produce the DROP TABLE and CREATE TABLE SQL statements. These statements can be altered by modifying tables.xsl

all table names should have lower case names

Generic data types (as defined in java.sql.Types) which may be specified in tables.xml include: BIT, TINYINT, SMALLINT, INTEGER, BIGINT, FLOAT, REAL, DOUBLE, NUMERIC, DECIMAL, CHAR, VARCHAR, LONGVARCHAR, DATE, TIME, TIMESTAMP, BINARY, VARBINARY, LONGVARBINARY, NULL, OTHER, JAVA_OBJECT, DISTINCT, STRUCT, ARRAY, BLOB, CLOB, REF

WARNING: YOU MAY WANT TO MAKE A BACKUP OF YOUR DATABASE BEFORE RUNNING DbLoader

DbLoader will perform the following steps:

  1. Read configurable properties from dbloader.xml
  2. Get database connection from DbService
  3. Read tables.xml and issue corresponding DROP TABLE and CREATE TABLE SQL statements.
  4. Read data.xml and issue corresponding INSERT/UPDATE/DELETE SQL statements.


author:
   Ken Weiner, kweiner@interactivebusiness.com
author:
   modified and adapted to OSPI by Luis F.C. Mendes - University of Delaware
version:
   $Revision: 7153 $
See Also:   java.sql.Types

Inner Class :class DataHandler extends DefaultHandler

Field Summary
final protected  Loglogger
    

Constructor Summary
public  DbLoader(Connection con)
    

Method Summary
protected  voidalterTable(String alterTableStatement)
    
protected  voidcreateTable(String createTableStatement)
    
protected  voiddropTable(String dropTableStatement)
    
public  ConnectiongetCon()
    
public  StringgetDbName()
    
public  StringgetDbVersion()
    
public  StringgetDriverName()
    
public  StringgetDriverVersion()
    
protected  ElementgetFirstChildWithName(Element parent, String name)
    
protected  intgetJavaSqlDataTypeOfColumn(Document tablesDocGeneric, String tableName, String columnName)
    
protected  intgetJavaSqlType(String genericDataTypeName)
    
protected  StringgetLocalDataTypeName(String genericDataTypeName)
    
protected  StringgetNodeValue(Node node)
    
public  PropertiesHandlergetPropertiesHandler()
    
public  PreparedStatementgetPstmt()
    
public  StatementgetStmt()
    
public  HashtablegetTableColumnTypes()
    
public  PrintWritergetTableScriptOut()
    
protected  ElementgetTableWithName(Document tablesDoc, String tableName)
    
public  DocumentgetTablesDoc()
    
public  DocumentgetTablesDocGeneric()
    
protected  XMLReadergetXMLReader()
    
protected  voidindexTable(String indexTableStatement)
    
protected  voidinitTableScript()
    
public  booleanisAlterTables()
    
public  booleanisCreateTableScript()
    
public  booleanisCreateTables()
    
public  booleanisDropTables()
    
public  booleanisIndexTables()
    
public  booleanisPopulateTables()
    
protected  voidprintInfo()
    
protected  voidreadProperties(XMLReader parser, InputStream properties)
    
protected  voidreplaceDataTypes(Document tablesDoc)
    
public  voidrunLoader(InputStream tables)
    
public  voidsetAlterTables(boolean alterTables)
    
public  voidsetCon(Connection con)
    
public  voidsetCreateTableScript(boolean createTableScript)
    
public  voidsetCreateTables(boolean createTables)
    
public  voidsetDbName(String dbName)
    
public  voidsetDbVersion(String dbVersion)
    
public  voidsetDriverName(String driverName)
    
public  voidsetDriverVersion(String driverVersion)
    
public  voidsetDropTables(boolean dropTables)
    
public  voidsetIndexTables(boolean indexTables)
    
public  voidsetPopulateTables(boolean populateTables)
    
public  voidsetPropertiesHandler(PropertiesHandler propertiesHandler)
    
public  voidsetPstmt(PreparedStatement pstmt)
    
public  voidsetStmt(Statement stmt)
    
public  voidsetTableColumnTypes(Hashtable tableColumnTypes)
    
public  voidsetTableScriptOut(PrintWriter tableScriptOut)
    
public  voidsetTablesDoc(Document tablesDoc)
    
public  voidsetTablesDocGeneric(Document tablesDocGeneric)
    

Field Detail
logger
final protected Log logger(Code)




Constructor Detail
DbLoader
public DbLoader(Connection con)(Code)




Method Detail
alterTable
protected void alterTable(String alterTableStatement)(Code)



createTable
protected void createTable(String createTableStatement)(Code)



dropTable
protected void dropTable(String dropTableStatement)(Code)



getCon
public Connection getCon()(Code)



getDbName
public String getDbName()(Code)



getDbVersion
public String getDbVersion()(Code)



getDriverName
public String getDriverName()(Code)



getDriverVersion
public String getDriverVersion()(Code)



getFirstChildWithName
protected Element getFirstChildWithName(Element parent, String name)(Code)



getJavaSqlDataTypeOfColumn
protected int getJavaSqlDataTypeOfColumn(Document tablesDocGeneric, String tableName, String columnName)(Code)



getJavaSqlType
protected int getJavaSqlType(String genericDataTypeName)(Code)



getLocalDataTypeName
protected String getLocalDataTypeName(String genericDataTypeName)(Code)



getNodeValue
protected String getNodeValue(Node node)(Code)



getPropertiesHandler
public PropertiesHandler getPropertiesHandler()(Code)



getPstmt
public PreparedStatement getPstmt()(Code)



getStmt
public Statement getStmt()(Code)



getTableColumnTypes
public Hashtable getTableColumnTypes()(Code)



getTableScriptOut
public PrintWriter getTableScriptOut()(Code)



getTableWithName
protected Element getTableWithName(Document tablesDoc, String tableName)(Code)



getTablesDoc
public Document getTablesDoc()(Code)



getTablesDocGeneric
public Document getTablesDocGeneric()(Code)



getXMLReader
protected XMLReader getXMLReader() throws SAXException, ParserConfigurationException(Code)



indexTable
protected void indexTable(String indexTableStatement)(Code)



initTableScript
protected void initTableScript() throws java.io.IOException(Code)



isAlterTables
public boolean isAlterTables()(Code)



isCreateTableScript
public boolean isCreateTableScript()(Code)



isCreateTables
public boolean isCreateTables()(Code)



isDropTables
public boolean isDropTables()(Code)



isIndexTables
public boolean isIndexTables()(Code)



isPopulateTables
public boolean isPopulateTables()(Code)



printInfo
protected void printInfo() throws SQLException(Code)



readProperties
protected void readProperties(XMLReader parser, InputStream properties) throws SAXException, IOException(Code)



replaceDataTypes
protected void replaceDataTypes(Document tablesDoc)(Code)



runLoader
public void runLoader(InputStream tables)(Code)



setAlterTables
public void setAlterTables(boolean alterTables)(Code)



setCon
public void setCon(Connection con)(Code)



setCreateTableScript
public void setCreateTableScript(boolean createTableScript)(Code)



setCreateTables
public void setCreateTables(boolean createTables)(Code)



setDbName
public void setDbName(String dbName)(Code)



setDbVersion
public void setDbVersion(String dbVersion)(Code)



setDriverName
public void setDriverName(String driverName)(Code)



setDriverVersion
public void setDriverVersion(String driverVersion)(Code)



setDropTables
public void setDropTables(boolean dropTables)(Code)



setIndexTables
public void setIndexTables(boolean indexTables)(Code)



setPopulateTables
public void setPopulateTables(boolean populateTables)(Code)



setPropertiesHandler
public void setPropertiesHandler(PropertiesHandler propertiesHandler)(Code)



setPstmt
public void setPstmt(PreparedStatement pstmt)(Code)



setStmt
public void setStmt(Statement stmt)(Code)



setTableColumnTypes
public void setTableColumnTypes(Hashtable tableColumnTypes)(Code)



setTableScriptOut
public void setTableScriptOut(PrintWriter tableScriptOut)(Code)



setTablesDoc
public void setTablesDoc(Document tablesDoc)(Code)



setTablesDocGeneric
public void setTablesDocGeneric(Document tablesDocGeneric)(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.