A timestamp in SQL server is called a DateTime. That is actually called a timestamp is something else.
This commit is contained in:
parent
ea3e095896
commit
60b138e0df
|
@ -6,7 +6,7 @@
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||||
<xsl:output encoding="UTF-8" method="xml" indent="yes" />
|
<xsl:output encoding="UTF-8" method="xml" indent="yes" />
|
||||||
|
|
||||||
<xsl:param name="locale" select="en-UK"/>
|
<xsl:param name="locale" select="en-GB"/>
|
||||||
|
|
||||||
<xsl:param name="css-stylesheet"/>
|
<xsl:param name="css-stylesheet"/>
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
Convert ADL to MS-SQL
|
Convert ADL to MS-SQL
|
||||||
|
|
||||||
$Author: sb $
|
$Author: sb $
|
||||||
$Revision: 1.7 $
|
$Revision: 1.8 $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<xsl:output indent="no" encoding="UTF-8" method="text"/>
|
<xsl:output indent="no" encoding="UTF-8" method="text"/>
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
-- <xsl:value-of select="$product-version"/>
|
-- <xsl:value-of select="$product-version"/>
|
||||||
--
|
--
|
||||||
-- Database for application <xsl:value-of select="@name"/> version <xsl:value-of select="@version"/>
|
-- Database for application <xsl:value-of select="@name"/> version <xsl:value-of select="@version"/>
|
||||||
-- Generated for MS-SQL 2000+ using adl2mssql.xslt <xsl:value-of select="substring('$Revision: 1.7 $', 12)"/>
|
-- Generated for MS-SQL 2000+ using adl2mssql.xslt <xsl:value-of select="substring('$Revision: 1.8 $', 12)"/>
|
||||||
-- THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT IT.
|
-- THIS FILE IS AUTOMATICALLY GENERATED: DO NOT EDIT IT.
|
||||||
--
|
--
|
||||||
-- <xsl:value-of select="@revision"/>
|
-- <xsl:value-of select="@revision"/>
|
||||||
|
@ -729,7 +729,7 @@
|
||||||
<xsl:when test="$base-type = 'string'">VARCHAR( <xsl:value-of select="$base-size"/>)</xsl:when>
|
<xsl:when test="$base-type = 'string'">VARCHAR( <xsl:value-of select="$base-size"/>)</xsl:when>
|
||||||
<xsl:when test="$base-type = 'text'">TEXT</xsl:when>
|
<xsl:when test="$base-type = 'text'">TEXT</xsl:when>
|
||||||
<xsl:when test="$base-type = 'boolean'">BIT</xsl:when>
|
<xsl:when test="$base-type = 'boolean'">BIT</xsl:when>
|
||||||
<xsl:when test="$base-type = 'timestamp'">TIMESTAMP</xsl:when>
|
<xsl:when test="$base-type = 'timestamp'">DATETIME</xsl:when>
|
||||||
<xsl:when test="$base-type = 'integer'">INT</xsl:when>
|
<xsl:when test="$base-type = 'integer'">INT</xsl:when>
|
||||||
<xsl:when test="$base-type = 'real'">DOUBLE PRECISION</xsl:when>
|
<xsl:when test="$base-type = 'real'">DOUBLE PRECISION</xsl:when>
|
||||||
<xsl:when test="$base-type = 'money'">DECIMAL</xsl:when>
|
<xsl:when test="$base-type = 'money'">DECIMAL</xsl:when>
|
||||||
|
|
Loading…
Reference in a new issue