Skip to content

Commit

Permalink
0002605 - h2, mssqlserver, postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
jswilmer committed May 25, 2016
1 parent 45203c9 commit 6d125ba
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 2 deletions.
14 changes: 13 additions & 1 deletion 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.
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
|===
19 changes: 18 additions & 1 deletion symmetric-assemble/src/asciidoc/appendix/mssqlserver.ad
Expand Up @@ -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;
----
====
====

.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
|===
15 changes: 15 additions & 0 deletions symmetric-assemble/src/asciidoc/appendix/postgresql.ad
Expand Up @@ -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
|===

0 comments on commit 6d125ba

Please sign in to comment.