From 6d125ba4dea5296a6264d995a1480fb36a44dfe9 Mon Sep 17 00:00:00 2001 From: Jacob Wilmer Date: Wed, 25 May 2016 15:53:38 -0400 Subject: [PATCH] 0002605 - h2, mssqlserver, postgres --- .../src/asciidoc/appendix/h2.ad | 14 +++++++++++++- .../src/asciidoc/appendix/mssqlserver.ad | 19 ++++++++++++++++++- .../src/asciidoc/appendix/postgresql.ad | 15 +++++++++++++++ 3 files changed, 46 insertions(+), 2 deletions(-) diff --git a/symmetric-assemble/src/asciidoc/appendix/h2.ad b/symmetric-assemble/src/asciidoc/appendix/h2.ad index 3e6ab17691..057c9095da 100644 --- a/symmetric-assemble/src/asciidoc/appendix/h2.ad +++ b/symmetric-assemble/src/asciidoc/appendix/h2.ad @@ -1,4 +1,16 @@ === H2 -The H2 database allows only Java-based triggers. Therefore the H2 dialect requires that the SymmetricDS jar file be in the database's classpath. \ No newline at end of file +The H2 database allows only Java-based triggers. Therefore the H2 dialect requires that the SymmetricDS jar file be in the database's classpath. + +.Supported Data Types +|=== +|Data Type|Supported? + +|Int, TinyInt, SmallInt, BigInt|Yes +|Boolean|Yes +|Decimal|Yes +|Double, Real|Yes +|Time, Date, Timestamp|Yes +|Binary, Blob|Yes +|=== diff --git a/symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad b/symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad index 7cef9f10a5..663b808541 100644 --- a/symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad +++ b/symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad @@ -75,4 +75,21 @@ use SYM_DATABASE; CREATE USER APP_DATABASE FOR LOGIN APP_DATABASE GRANT INSERT, EXECUTE ON DATABASE::SYM_DATABASE to APP_USER; ---- -==== \ No newline at end of file +==== + +.Supported Data Types +|=== +|Data Type|Supported? + +|BigInt, Int, SmallInt, TinyInt|Yes +|Decimal, Numeric|Yes +|Bit|Yes +|Money, SmallMoney|Yes +|Float, Real|Yes +|Date, DateTime, Datetime2, SmallDatetime, Time|Yes +|Datetimeoffset|No +|Char, Varchar, Text, Nchar, Nvarchar, Ntext|Yes +|Binary, Varbinary|Yes +|Image|No +|Spatial Data Types|No +|=== \ No newline at end of file diff --git a/symmetric-assemble/src/asciidoc/appendix/postgresql.ad b/symmetric-assemble/src/asciidoc/appendix/postgresql.ad index 671662529e..afeac50b80 100644 --- a/symmetric-assemble/src/asciidoc/appendix/postgresql.ad +++ b/symmetric-assemble/src/asciidoc/appendix/postgresql.ad @@ -46,3 +46,18 @@ When multiple users are involved, the SymmetricDS user will need the following p GRANT USAGE ON SCHEMA {schema name} TO {user name}; GRANT CREATE ON SCHEMA {schema name} TO {user name}; ---- + +.supported data types +|=== +|Data Type|Supported? + +|SmallInt, Integer, BigInt|Yes +|Decimal, Numeric|Yes +|Real, Double Precesion|Yes +|Serial, BigSerial|Yes +|Char, Varchar, Text|Yes +|Money|No +|Timestamp, Date, Time, Interval|Yes +|Enum|No +|Point, Lseg, Box, Path, Polygon, Circle|Yes +|=== \ No newline at end of file