Java Doc for StandardDialect.java in  » Database-JDBC-Connection-Pool » HA-JDBC » net » sf » hajdbc » dialect » 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 JDBC Connection Pool » HA JDBC » net.sf.hajdbc.dialect 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sf.hajdbc.dialect.StandardDialect

All known Subclasses:   net.sf.hajdbc.dialect.MckoiDialect,  net.sf.hajdbc.dialect.IngresDialect,  net.sf.hajdbc.dialect.PostgreSQLDialect,  net.sf.hajdbc.dialect.HSQLDBDialect,  net.sf.hajdbc.dialect.OracleDialect,  net.sf.hajdbc.dialect.H2Dialect,  net.sf.hajdbc.dialect.DerbyDialect,  net.sf.hajdbc.dialect.MaxDBDialect,  net.sf.hajdbc.dialect.FirebirdDialect,  net.sf.hajdbc.dialect.DB2Dialect,  net.sf.hajdbc.dialect.SybaseDialect,  net.sf.hajdbc.dialect.MySQLDialect,
StandardDialect
public class StandardDialect implements Dialect(Code)

author:
   Paul Ferraro
since:
   1.1




Method Summary
protected  StringalterIdentityColumnFormat()
    
protected  StringalterSequenceFormat()
    
protected  StringcreateForeignKeyConstraintFormat()
    
protected  StringcreateUniqueConstraintFormat()
    
protected  StringcurrentDatePattern()
    
protected  StringcurrentTimePattern()
    
protected  StringcurrentTimestampFunction()
    
protected  StringcurrentTimestampPattern()
    
protected  StringdateLiteralFormat()
    
protected  StringdropConstraintFormat()
    
protected  StringdropForeignKeyConstraintFormat()
    
protected  StringdropUniqueConstraintFormat()
    
protected  StringdummyTable()
    
public  StringevaluateCurrentDate(String sql, java.sql.Date date)
    
public  StringevaluateCurrentTime(String sql, java.sql.Time time)
    
public  StringevaluateCurrentTimestamp(String sql, java.sql.Timestamp timestamp)
    
public  StringevaluateRand(String sql)
    
protected  StringexecuteFunction(Connection connection, String function)
    
protected  StringexecuteFunctionFormat()
    
protected  StringexecuteFunctionSQL(String function)
    
protected  List<String>executeQuery(Connection connection, String sql)
    
public  StringgetAlterIdentityColumnSQL(TableProperties table, ColumnProperties column, long value)
    
public  StringgetAlterSequenceSQL(SequenceProperties sequence, long value)
    
public  intgetColumnType(ColumnProperties properties)
    
public  StringgetCreateForeignKeyConstraintSQL(ForeignKeyConstraint key)
    
public  StringgetCreateUniqueConstraintSQL(UniqueConstraint constraint)
    
public  List<String>getDefaultSchemas(DatabaseMetaData metaData)
    
public  StringgetDropForeignKeyConstraintSQL(ForeignKeyConstraint key)
    
public  StringgetDropUniqueConstraintSQL(UniqueConstraint constraint)
    
public  PatterngetIdentifierPattern(DatabaseMetaData metaData)
    
public  StringgetNextSequenceValueSQL(SequenceProperties sequence)
    
public  Collection<QualifiedName>getSequences(DatabaseMetaData metaData)
    
public  StringgetSimpleSQL()
    
public  StringgetTruncateTableSQL(TableProperties properties)
    
protected  StringinsertIntoTablePattern()
    
public  booleanisIdentity(ColumnProperties properties)
    
public  booleanisSelectForUpdate(String sql)
    
protected  StringnextSequenceValueFormat()
    
protected  Stringparse(Pattern pattern, String string)
    
public  StringparseInsertTable(String sql)
    
public  StringparseSequence(String sql)
    
protected  StringrandomPattern()
    
protected  StringselectForUpdatePattern()
    
protected  StringsequencePattern()
    
protected  StringsequenceTableType()
    
protected  StringtimeLiteralFormat()
    
protected  StringtimestampLiteralFormat()
    
protected  StringtruncateTableFormat()
    



Method Detail
alterIdentityColumnFormat
protected String alterIdentityColumnFormat()(Code)



alterSequenceFormat
protected String alterSequenceFormat()(Code)



createForeignKeyConstraintFormat
protected String createForeignKeyConstraintFormat()(Code)



createUniqueConstraintFormat
protected String createUniqueConstraintFormat()(Code)



currentDatePattern
protected String currentDatePattern()(Code)



currentTimePattern
protected String currentTimePattern()(Code)



currentTimestampFunction
protected String currentTimestampFunction()(Code)



currentTimestampPattern
protected String currentTimestampPattern()(Code)



dateLiteralFormat
protected String dateLiteralFormat()(Code)



dropConstraintFormat
protected String dropConstraintFormat()(Code)



dropForeignKeyConstraintFormat
protected String dropForeignKeyConstraintFormat()(Code)



dropUniqueConstraintFormat
protected String dropUniqueConstraintFormat()(Code)



dummyTable
protected String dummyTable()(Code)



evaluateCurrentDate
public String evaluateCurrentDate(String sql, java.sql.Date date)(Code)

See Also:   net.sf.hajdbc.Dialect.evaluateCurrentDate(java.lang.Stringjava.sql.Date)



evaluateCurrentTime
public String evaluateCurrentTime(String sql, java.sql.Time time)(Code)

See Also:   net.sf.hajdbc.Dialect.evaluateCurrentTime(java.lang.Stringjava.sql.Time)



evaluateCurrentTimestamp
public String evaluateCurrentTimestamp(String sql, java.sql.Timestamp timestamp)(Code)

See Also:   net.sf.hajdbc.Dialect.evaluateCurrentTimestamp(java.lang.Stringjava.sql.Timestamp)



evaluateRand
public String evaluateRand(String sql)(Code)

See Also:   net.sf.hajdbc.Dialect.evaluateRand(java.lang.String)



executeFunction
protected String executeFunction(Connection connection, String function) throws SQLException(Code)



executeFunctionFormat
protected String executeFunctionFormat()(Code)



executeFunctionSQL
protected String executeFunctionSQL(String function)(Code)



executeQuery
protected List<String> executeQuery(Connection connection, String sql) throws SQLException(Code)



getAlterIdentityColumnSQL
public String getAlterIdentityColumnSQL(TableProperties table, ColumnProperties column, long value) throws SQLException(Code)



getAlterSequenceSQL
public String getAlterSequenceSQL(SequenceProperties sequence, long value)(Code)

See Also:   net.sf.hajdbc.Dialect.getAlterSequenceSQL(net.sf.hajdbc.SequencePropertieslong)



getColumnType
public int getColumnType(ColumnProperties properties)(Code)

See Also:   net.sf.hajdbc.Dialect.getColumnType(net.sf.hajdbc.ColumnProperties)



getCreateForeignKeyConstraintSQL
public String getCreateForeignKeyConstraintSQL(ForeignKeyConstraint key)(Code)

See Also:   net.sf.hajdbc.Dialect.getCreateForeignKeyConstraintSQL(net.sf.hajdbc.ForeignKeyConstraint)



getCreateUniqueConstraintSQL
public String getCreateUniqueConstraintSQL(UniqueConstraint constraint)(Code)

See Also:   net.sf.hajdbc.Dialect.getCreateUniqueConstraintSQL(net.sf.hajdbc.UniqueConstraint)



getDefaultSchemas
public List<String> getDefaultSchemas(DatabaseMetaData metaData) throws SQLException(Code)

See Also:   net.sf.hajdbc.Dialect.getDefaultSchemas(java.sql.DatabaseMetaData)



getDropForeignKeyConstraintSQL
public String getDropForeignKeyConstraintSQL(ForeignKeyConstraint key)(Code)

See Also:   net.sf.hajdbc.Dialect.getDropForeignKeyConstraintSQL(net.sf.hajdbc.ForeignKeyConstraint)



getDropUniqueConstraintSQL
public String getDropUniqueConstraintSQL(UniqueConstraint constraint)(Code)

See Also:   net.sf.hajdbc.Dialect.getDropUniqueConstraintSQL(net.sf.hajdbc.UniqueConstraint)



getIdentifierPattern
public Pattern getIdentifierPattern(DatabaseMetaData metaData) throws SQLException(Code)

See Also:   net.sf.hajdbc.Dialect.getIdentifierPattern(java.sql.DatabaseMetaData)



getNextSequenceValueSQL
public String getNextSequenceValueSQL(SequenceProperties sequence)(Code)

See Also:   net.sf.hajdbc.Dialect.getNextSequenceValueSQL(net.sf.hajdbc.SequenceProperties)



getSequences
public Collection<QualifiedName> getSequences(DatabaseMetaData metaData) throws SQLException(Code)

See Also:   net.sf.hajdbc.Dialect.getSequences(java.sql.DatabaseMetaData)



getSimpleSQL
public String getSimpleSQL()(Code)

See Also:   net.sf.hajdbc.Dialect.getSimpleSQL



getTruncateTableSQL
public String getTruncateTableSQL(TableProperties properties)(Code)

See Also:   net.sf.hajdbc.Dialect.getTruncateTableSQL(net.sf.hajdbc.TableProperties)



insertIntoTablePattern
protected String insertIntoTablePattern()(Code)



isIdentity
public boolean isIdentity(ColumnProperties properties)(Code)

See Also:   net.sf.hajdbc.Dialect.isIdentity(net.sf.hajdbc.ColumnProperties)



isSelectForUpdate
public boolean isSelectForUpdate(String sql)(Code)

See Also:   net.sf.hajdbc.Dialect.isSelectForUpdate(java.lang.String)



nextSequenceValueFormat
protected String nextSequenceValueFormat()(Code)



parse
protected String parse(Pattern pattern, String string)(Code)



parseInsertTable
public String parseInsertTable(String sql)(Code)

See Also:   net.sf.hajdbc.Dialect.parseInsertTable(java.lang.String)



parseSequence
public String parseSequence(String sql)(Code)

See Also:   net.sf.hajdbc.Dialect.parseSequence(java.lang.String)



randomPattern
protected String randomPattern()(Code)



selectForUpdatePattern
protected String selectForUpdatePattern()(Code)



sequencePattern
protected String sequencePattern()(Code)



sequenceTableType
protected String sequenceTableType()(Code)



timeLiteralFormat
protected String timeLiteralFormat()(Code)



timestampLiteralFormat
protected String timestampLiteralFormat()(Code)



truncateTableFormat
protected String truncateTableFormat()(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.