org.apache.torque.templates.platform
Class PlatformMysqlImpl

java.lang.Object
  extended by org.apache.torque.templates.platform.PlatformDefaultImpl
      extended by org.apache.torque.templates.platform.PlatformMysqlImpl
All Implemented Interfaces:
Platform

public class PlatformMysqlImpl
extends PlatformDefaultImpl

MySql Platform implementation.

Version:
$Id: PlatformMysqlImpl.java 1379244 2012-08-31 01:05:22Z tfischer $
Author:
Martin Poeschl

Constructor Summary
PlatformMysqlImpl()
          Default constructor.
 
Method Summary
protected  boolean escapeBackslashes()
          Returns whether backslashes must be escaped in string literals.
 String getAutoIncrement()
           
 String getDateString(Date date)
          Formats the given date as date string which is parseable by the database.
 boolean hasSize(String sqlType)
          Returns if the RDBMS-specific SQL type has a size attribute.
 
Methods inherited from class org.apache.torque.templates.platform.PlatformDefaultImpl
createNotNullBeforeAutoincrement, getNullString, getSizeSuffix, getSqlTypeForSchemaType, getTimestampString, getTimeString, hasScale, quoteAndEscape, setSchemaTypeToSqlTypeMapping, usesStandaloneSchema
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PlatformMysqlImpl

public PlatformMysqlImpl()
Default constructor.

Method Detail

getAutoIncrement

public String getAutoIncrement()
Specified by:
getAutoIncrement in interface Platform
Overrides:
getAutoIncrement in class PlatformDefaultImpl
Returns:
The RDBMS-specific SQL fragment for autoincrement.
See Also:
Platform.getAutoIncrement()

hasSize

public boolean hasSize(String sqlType)
Description copied from interface: Platform
Returns if the RDBMS-specific SQL type has a size attribute.

Specified by:
hasSize in interface Platform
Overrides:
hasSize in class PlatformDefaultImpl
Parameters:
sqlType - the SQL type
Returns:
true if the type has a size attribute
See Also:
Platform.hasSize(String)

escapeBackslashes

protected boolean escapeBackslashes()
Description copied from class: PlatformDefaultImpl
Returns whether backslashes must be escaped in string literals.

Overrides:
escapeBackslashes in class PlatformDefaultImpl
Returns:
true if backslashes bust be escaped, false otherwise.

getDateString

public String getDateString(Date date)
Formats the given date as date string which is parseable by the database.

Specified by:
getDateString in interface Platform
Overrides:
getDateString in class PlatformDefaultImpl
Parameters:
date - the date to format.
Returns:
the date string, inclusive string escaping.


Copyright © 2000-2013 The Apache Software Foundation. All Rights Reserved.