Java Doc for FrontBaseDialect.java in  » Database-ORM » hibernate » org » hibernate » 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 ORM » hibernate » org.hibernate.dialect 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.hibernate.dialect.Dialect
      org.hibernate.dialect.FrontBaseDialect

FrontBaseDialect
public class FrontBaseDialect extends Dialect (Code)
An SQL Dialect for Frontbase. Assumes you're using the latest version of the FrontBase JDBC driver, available from http://frontbase.com/

NOTE: The latest JDBC driver is not always included with the latest release of FrontBase. Download the driver separately, and enjoy the informative release notes.

This dialect was tested with JDBC driver version 2.3.1. This driver contains a bug that causes batches of updates to fail. (The bug should be fixed in the next release of the JDBC driver.) If you are using JDBC driver 2.3.1, you can work-around this problem by setting the following in your hibernate.properties file: hibernate.jdbc.batch_size=15
author:
   Ron Lussier rlussier@lenscraft.com




Constructor Summary
public  FrontBaseDialect()
    

Method Summary
public  booleandropConstraints()
    
public  StringgetAddColumnString()
    
public  StringgetCascadeConstraintsString()
    
public  StringgetCurrentTimestampCallString()
    
public  StringgetForUpdateString()
     Does this dialect support the FOR UPDATE syntax.
public  LockingStrategygetLockingStrategy(Lockable lockable, LockMode lockMode)
    
public  booleanisCurrentTimestampSelectStringCallable()
    


Constructor Detail
FrontBaseDialect
public FrontBaseDialect()(Code)




Method Detail
dropConstraints
public boolean dropConstraints()(Code)



getAddColumnString
public String getAddColumnString()(Code)



getCascadeConstraintsString
public String getCascadeConstraintsString()(Code)



getCurrentTimestampCallString
public String getCurrentTimestampCallString()(Code)



getForUpdateString
public String getForUpdateString()(Code)
Does this dialect support the FOR UPDATE syntax. No! false always. FrontBase doesn't support this syntax,which was dropped with SQL92



getLockingStrategy
public LockingStrategy getLockingStrategy(Lockable lockable, LockMode lockMode)(Code)



isCurrentTimestampSelectStringCallable
public boolean isCurrentTimestampSelectStringCallable()(Code)



Fields inherited from org.hibernate.dialect.Dialect
final public static String CLOSED_QUOTE(Code)(Java Doc)
final public static String DEFAULT_BATCH_SIZE(Code)(Java Doc)
final public static String NO_BATCH(Code)(Java Doc)
final public static String QUOTE(Code)(Java Doc)

Methods inherited from org.hibernate.dialect.Dialect
public String appendIdentitySelectToInsert(String insertString)(Code)(Java Doc)
public String appendLockHint(LockMode mode, String tableName)(Code)(Java Doc)
public String applyLocksToSql(String sql, Map aliasedLockModes, Map keyColumnNames)(Code)(Java Doc)
public boolean areStringComparisonsCaseInsensitive()(Code)(Java Doc)
public boolean bindLimitParametersFirst()(Code)(Java Doc)
public boolean bindLimitParametersInReverseOrder()(Code)(Java Doc)
public SQLExceptionConverter buildSQLExceptionConverter()(Code)(Java Doc)
public char closeQuote()(Code)(Java Doc)
public CaseFragment createCaseFragment()(Code)(Java Doc)
public JoinFragment createOuterJoinFragment()(Code)(Java Doc)
public boolean doesReadCommittedCauseWritersToBlockReaders()(Code)(Java Doc)
public boolean doesRepeatableReadCauseReadersToBlockWriters()(Code)(Java Doc)
public boolean dropConstraints()(Code)(Java Doc)
public boolean dropTemporaryTableAfterUse()(Code)(Java Doc)
public boolean forUpdateOfColumns()(Code)(Java Doc)
public String generateTemporaryTableName(String baseTableName)(Code)(Java Doc)
public String getAddColumnString()(Code)(Java Doc)
public String getAddForeignKeyConstraintString(String constraintName, String[] foreignKey, String referencedTable, String[] primaryKey, boolean referencesPrimaryKey)(Code)(Java Doc)
public String getAddPrimaryKeyConstraintString(String constraintName)(Code)(Java Doc)
public String getCascadeConstraintsString()(Code)(Java Doc)
public String getCastTypeName(int code)(Code)(Java Doc)
public String getColumnComment(String comment)(Code)(Java Doc)
public String getCreateMultisetTableString()(Code)(Java Doc)
protected String getCreateSequenceString(String sequenceName) throws MappingException(Code)(Java Doc)
protected String getCreateSequenceString(String sequenceName, int initialValue, int incrementSize) throws MappingException(Code)(Java Doc)
public String[] getCreateSequenceStrings(String sequenceName) throws MappingException(Code)(Java Doc)
public String[] getCreateSequenceStrings(String sequenceName, int initialValue, int incrementSize) throws MappingException(Code)(Java Doc)
public String getCreateTableString()(Code)(Java Doc)
public String getCreateTemporaryTablePostfix()(Code)(Java Doc)
public String getCreateTemporaryTableString()(Code)(Java Doc)
public String getCurrentTimestampSQLFunctionName()(Code)(Java Doc)
public String getCurrentTimestampSelectString()(Code)(Java Doc)
final public Properties getDefaultProperties()(Code)(Java Doc)
public static Dialect getDialect() throws HibernateException(Code)(Java Doc)
public static Dialect getDialect(Properties props) throws HibernateException(Code)(Java Doc)
public String getDropForeignKeyString()(Code)(Java Doc)
protected String getDropSequenceString(String sequenceName) throws MappingException(Code)(Java Doc)
public String[] getDropSequenceStrings(String sequenceName) throws MappingException(Code)(Java Doc)
public String getForUpdateNowaitString()(Code)(Java Doc)
public String getForUpdateNowaitString(String aliases)(Code)(Java Doc)
public String getForUpdateString(LockMode lockMode)(Code)(Java Doc)
public String getForUpdateString()(Code)(Java Doc)
public String getForUpdateString(String aliases)(Code)(Java Doc)
final public Map getFunctions()(Code)(Java Doc)
public String getHibernateTypeName(int code) throws HibernateException(Code)(Java Doc)
public String getHibernateTypeName(int code, int length, int precision, int scale) throws HibernateException(Code)(Java Doc)
public String getIdentityColumnString(int type) throws MappingException(Code)(Java Doc)
protected String getIdentityColumnString() throws MappingException(Code)(Java Doc)
public String getIdentityInsertString()(Code)(Java Doc)
public String getIdentitySelectString(String table, String column, int type) throws MappingException(Code)(Java Doc)
protected String getIdentitySelectString() throws MappingException(Code)(Java Doc)
public Set getKeywords()(Code)(Java Doc)
public String getLimitString(String query, int offset, int limit)(Code)(Java Doc)
protected String getLimitString(String query, boolean hasOffset)(Code)(Java Doc)
public LockingStrategy getLockingStrategy(Lockable lockable, LockMode lockMode)(Code)(Java Doc)
public String getLowercaseFunction()(Code)(Java Doc)
public int getMaxAliasLength()(Code)(Java Doc)
public Class getNativeIdentifierGeneratorClass()(Code)(Java Doc)
public String getNoColumnsInsertString()(Code)(Java Doc)
public String getNullColumnString()(Code)(Java Doc)
public String getQuerySequencesString()(Code)(Java Doc)
public ResultSet getResultSet(CallableStatement statement) throws SQLException(Code)(Java Doc)
public String getSelectClauseNullString(int sqlType)(Code)(Java Doc)
public String getSelectGUIDString()(Code)(Java Doc)
public String getSelectSequenceNextValString(String sequenceName) throws MappingException(Code)(Java Doc)
public String getSequenceNextValString(String sequenceName) throws MappingException(Code)(Java Doc)
public String getTableComment(String comment)(Code)(Java Doc)
public String getTableTypeString()(Code)(Java Doc)
public String getTypeName(int code) throws HibernateException(Code)(Java Doc)
public String getTypeName(int code, int length, int precision, int scale) throws HibernateException(Code)(Java Doc)
public ViolatedConstraintNameExtracter getViolatedConstraintNameExtracter()(Code)(Java Doc)
public boolean hasAlterTable()(Code)(Java Doc)
public boolean hasDataTypeInIdentityColumn()(Code)(Java Doc)
public boolean hasSelfReferentialForeignKeyBug()(Code)(Java Doc)
public boolean isCurrentTimestampSelectStringCallable()(Code)(Java Doc)
public char openQuote()(Code)(Java Doc)
public Boolean performTemporaryTableDDLInIsolation()(Code)(Java Doc)
public boolean qualifyIndexName()(Code)(Java Doc)
final public String quote(String column)(Code)(Java Doc)
protected void registerColumnType(int code, int capacity, String name)(Code)(Java Doc)
protected void registerColumnType(int code, String name)(Code)(Java Doc)
protected void registerFunction(String name, SQLFunction function)(Code)(Java Doc)
protected void registerHibernateType(int code, int capacity, String name)(Code)(Java Doc)
protected void registerHibernateType(int code, String name)(Code)(Java Doc)
protected void registerKeyword(String word)(Code)(Java Doc)
public int registerResultSetOutParameter(CallableStatement statement, int position) throws SQLException(Code)(Java Doc)
public boolean supportsBindAsCallableArgument()(Code)(Java Doc)
public boolean supportsCascadeDelete()(Code)(Java Doc)
public boolean supportsCircularCascadeDeleteConstraints()(Code)(Java Doc)
public boolean supportsColumnCheck()(Code)(Java Doc)
public boolean supportsCommentOn()(Code)(Java Doc)
public boolean supportsCurrentTimestampSelection()(Code)(Java Doc)
public boolean supportsEmptyInList()(Code)(Java Doc)
public boolean supportsExistsInSelect()(Code)(Java Doc)
public boolean supportsExpectedLobUsagePattern()(Code)(Java Doc)
public boolean supportsIdentityColumns()(Code)(Java Doc)
public boolean supportsIfExistsAfterTableName()(Code)(Java Doc)
public boolean supportsIfExistsBeforeTableName()(Code)(Java Doc)
public boolean supportsInsertSelectIdentity()(Code)(Java Doc)
public boolean supportsLimit()(Code)(Java Doc)
public boolean supportsLimitOffset()(Code)(Java Doc)
public boolean supportsLobValueChangePropogation()(Code)(Java Doc)
public boolean supportsNotNullUnique()(Code)(Java Doc)
public boolean supportsOuterJoinForUpdate()(Code)(Java Doc)
public boolean supportsParametersInInsertSelect()(Code)(Java Doc)
public boolean supportsPooledSequences()(Code)(Java Doc)
public boolean supportsResultSetPositionQueryMethodsOnForwardOnlyCursor()(Code)(Java Doc)
public boolean supportsRowValueConstructorSyntax()(Code)(Java Doc)
public boolean supportsRowValueConstructorSyntaxInInList()(Code)(Java Doc)
public boolean supportsSequences()(Code)(Java Doc)
public boolean supportsSubqueryOnMutatingTable()(Code)(Java Doc)
public boolean supportsSubselectAsInPredicateLHS()(Code)(Java Doc)
public boolean supportsTableCheck()(Code)(Java Doc)
public boolean supportsTemporaryTables()(Code)(Java Doc)
public boolean supportsUnboundedLobLocatorMaterialization()(Code)(Java Doc)
public boolean supportsUnionAll()(Code)(Java Doc)
public boolean supportsUnique()(Code)(Java Doc)
public boolean supportsUniqueConstraintInCreateAlterTable()(Code)(Java Doc)
public boolean supportsVariableLimit()(Code)(Java Doc)
public String toBooleanValueString(boolean bool)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public String transformSelectString(String select)(Code)(Java Doc)
public boolean useInputStreamToInsertBlob()(Code)(Java Doc)
public boolean useMaxForLimit()(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.