Java Doc for Schema.java in  » Database-DBMS » h2database » org » h2 » schema » 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 » Database DBMS » h2database » org.h2.schema 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.h2.engine.DbObjectBase
      org.h2.schema.Schema

Schema
public class Schema extends DbObjectBase (Code)
A schema as created by the SQL statement CREATE SCHEMA



Constructor Summary
public  Schema(Database database, int id, String schemaName, User owner, boolean system)
    

Method Summary
public  voidadd(SchemaObject obj)
    
public  booleancanDrop()
    
public  voidcheckRename()
    
public  TableDatacreateTable(String tableName, int id, ObjectArray columns, boolean persistent, boolean clustered)
     Add a TableData to the schema.
public  TableLinkcreateTableLink(int id, String tableName, String driver, String url, String user, String password, String originalTable, boolean emitUpdates, boolean force)
     Add a TableLink to the schema.
public  ConstantfindConstant(String constantName)
    
public  ConstraintfindConstraint(String constraintName)
    
public  IndexfindIndex(String name)
    
public  SequencefindSequence(String sequenceName)
    
public  TablefindTableOrView(Session session, String name)
    
public  TriggerObjectfindTrigger(String name)
    
public  voidfreeUniqueName(String name)
    
public  ObjectArraygetAll(int type)
    
public  ConstantgetConstant(Session session, String constantName)
    
public  ConstraintgetConstraint(String name)
    
public  StringgetCreateSQL()
    
public  StringgetCreateSQLForCopy(Table table, String quotedName)
    
public  StringgetDropSQL()
    
public  IndexgetIndex(String name)
    
public  UsergetOwner()
    
public  SequencegetSequence(String sequenceName)
    
public  TablegetTableOrView(Session session, String name)
    
public  intgetType()
    
public  StringgetUniqueConstraintName(DbObject obj)
    
public  StringgetUniqueIndexName(DbObject obj, String prefix)
    
public  voidremove(Session session, SchemaObject obj)
    
public  voidremoveChildrenAndResources(Session session)
    
public  voidrename(SchemaObject obj, String newName)
    


Constructor Detail
Schema
public Schema(Database database, int id, String schemaName, User owner, boolean system)(Code)




Method Detail
add
public void add(SchemaObject obj) throws SQLException(Code)



canDrop
public boolean canDrop()(Code)



checkRename
public void checkRename() throws SQLException(Code)



createTable
public TableData createTable(String tableName, int id, ObjectArray columns, boolean persistent, boolean clustered) throws SQLException(Code)
Add a TableData to the schema.
Parameters:
  tableName - the table name
Parameters:
  id - the object id
Parameters:
  columns - the column list
Parameters:
  persistent - if the table should be persistent
Parameters:
  clustered - if a clustered table should be created the created TableData object



createTableLink
public TableLink createTableLink(int id, String tableName, String driver, String url, String user, String password, String originalTable, boolean emitUpdates, boolean force) throws SQLException(Code)
Add a TableLink to the schema.
Parameters:
  id - the object id
Parameters:
  tableName - the table name of the alias
Parameters:
  driver - the driver class name
Parameters:
  url - the database URL
Parameters:
  user - the user name
Parameters:
  password - the password
Parameters:
  originalTable - the table name of the target table
Parameters:
  emitUpdates - if updates should be emitted instead of delete/insert
Parameters:
  force - create the object even if the database can not be accessed the TableLink object



findConstant
public Constant findConstant(String constantName)(Code)



findConstraint
public Constraint findConstraint(String constraintName)(Code)



findIndex
public Index findIndex(String name)(Code)



findSequence
public Sequence findSequence(String sequenceName)(Code)



findTableOrView
public Table findTableOrView(Session session, String name)(Code)



findTrigger
public TriggerObject findTrigger(String name)(Code)



freeUniqueName
public void freeUniqueName(String name)(Code)



getAll
public ObjectArray getAll(int type)(Code)



getConstant
public Constant getConstant(Session session, String constantName) throws SQLException(Code)



getConstraint
public Constraint getConstraint(String name) throws SQLException(Code)



getCreateSQL
public String getCreateSQL()(Code)



getCreateSQLForCopy
public String getCreateSQLForCopy(Table table, String quotedName)(Code)



getDropSQL
public String getDropSQL()(Code)



getIndex
public Index getIndex(String name) throws SQLException(Code)



getOwner
public User getOwner()(Code)



getSequence
public Sequence getSequence(String sequenceName) throws SQLException(Code)



getTableOrView
public Table getTableOrView(Session session, String name) throws SQLException(Code)



getType
public int getType()(Code)



getUniqueConstraintName
public String getUniqueConstraintName(DbObject obj)(Code)



getUniqueIndexName
public String getUniqueIndexName(DbObject obj, String prefix)(Code)



remove
public void remove(Session session, SchemaObject obj) throws SQLException(Code)



removeChildrenAndResources
public void removeChildrenAndResources(Session session) throws SQLException(Code)



rename
public void rename(SchemaObject obj, String newName) throws SQLException(Code)



Fields inherited from org.h2.engine.DbObjectBase
protected String comment(Code)(Java Doc)
protected Database database(Code)(Java Doc)
protected Trace trace(Code)(Java Doc)

Methods inherited from org.h2.engine.DbObjectBase
abstract public void checkRename() throws SQLException(Code)(Java Doc)
public ObjectArray getChildren()(Code)(Java Doc)
public String getComment()(Code)(Java Doc)
abstract public String getCreateSQL()(Code)(Java Doc)
abstract public String getCreateSQLForCopy(Table table, String quotedName)(Code)(Java Doc)
public Database getDatabase()(Code)(Java Doc)
abstract public String getDropSQL()(Code)(Java Doc)
public int getHeadPos()(Code)(Java Doc)
public int getId()(Code)(Java Doc)
public long getModificationId()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public String getSQL()(Code)(Java Doc)
public boolean getTemporary()(Code)(Java Doc)
abstract public int getType()(Code)(Java Doc)
protected void invalidate()(Code)(Java Doc)
abstract public void removeChildrenAndResources(Session session) throws SQLException(Code)(Java Doc)
public void rename(String newName) throws SQLException(Code)(Java Doc)
public void setComment(String comment)(Code)(Java Doc)
public void setModified()(Code)(Java Doc)
protected void setObjectName(String name)(Code)(Java Doc)
public void setTemporary(boolean temporary)(Code)(Java Doc)

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.