Skip to content

Commit

Permalink
0000724 - Extensive edits to the Quick Start Tutorial, including a co…
Browse files Browse the repository at this point in the history
…lumn match filter for routing to specific stores.
  • Loading branch information
mhanes committed Jul 31, 2012
1 parent 12cd22f commit f03262a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions symmetric-server/src/main/deploy/samples/corp-000.properties
Expand Up @@ -13,16 +13,16 @@ engine.name=corp-000
db.driver=org.h2.Driver

# The JDBC URL used to connect to the database
#db.url=jdbc:mysql://localhost/sampleroot?tinyInt1isBit=false
#db.url=jdbc:oracle:thin:@127.0.0.1:1521:sampleroot
#db.url=jdbc:postgresql://localhost/sampleroot?stringtype=unspecified
#db.url=jdbc:derby:sampleroot;create=true
#db.url=jdbc:hsqldb:file:sampleroot;shutdown=true
#db.url=jdbc:mysql://localhost/samplecorp?tinyInt1isBit=false
#db.url=jdbc:oracle:thin:@127.0.0.1:1521:samplecorp
#db.url=jdbc:postgresql://localhost/samplecorp?stringtype=unspecified
#db.url=jdbc:derby:samplecorp;create=true
#db.url=jdbc:hsqldb:file:samplecorp;shutdown=true
#db.url=jdbc:jtds:sqlserver://localhost:1433;useCursors=true;bufferMaxMemory=10240;lobBuffer=5242880
#db.url=jdbc:db2://localhost/samproot
#db.url=jdbc:informix-sqli://localhost:9088/sampleroot:INFORMIXSERVER=ol_ids_1150_1
#db.url=jdbc:interbase://localhost//opt/interbase/data/sampleroot.gdb
db.url=jdbc:h2:sampleroot;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000
#db.url=jdbc:informix-sqli://localhost:9088/samplecorp:INFORMIXSERVER=ol_ids_1150_1
#db.url=jdbc:interbase://localhost//opt/interbase/data/samplecorp.gdb
db.url=jdbc:h2:samplecorp;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000

# The user to login as who can create and update tables
db.user=sa
Expand Down
2 changes: 1 addition & 1 deletion symmetric-server/src/main/deploy/samples/insert_sample.sql
Expand Up @@ -93,7 +93,7 @@ values('store_2_corp', 'store', 'corp', 'default',current_timestamp, current_tim

insert into sym_router
(router_id,source_node_group_id,target_node_group_id,router_type,create_time,last_update_time)
values('corp_2_one_store', 'corp', 'store', 'column','store_id=:EXTERNAL_ID OLD_store_id=:EXTERNAL_ID'current_timestamp, current_timestamp);
values('corp_2_one_store', 'corp', 'store', 'column','store_id=:EXTERNAL_ID OLD_store_id=:EXTERNAL_ID',current_timestamp, current_timestamp);

--
-- Trigger Router Links
Expand Down
16 changes: 8 additions & 8 deletions symmetric-server/src/main/deploy/samples/store-001.properties
Expand Up @@ -13,16 +13,16 @@ engine.name=store-001
db.driver=org.h2.Driver

# The JDBC URL used to connect to the database
#db.url=jdbc:mysql://localhost/sampleclient?tinyInt1isBit=false
#db.url=jdbc:oracle:thin:@127.0.0.1:1521:sampleclient
#db.url=jdbc:postgresql://localhost/sampleclient?stringtype=unspecified
#db.url=jdbc:derby:sampleclient;create=true
#db.url=jdbc:hsqldb:file:sampleclient;shutdown=true
#db.url=jdbc:jtds:sqlserver://localhost:1433/sampleclient;useCursors=true;bufferMaxMemory=10240;lobBuffer=5242880
#db.url=jdbc:mysql://localhost/sample001?tinyInt1isBit=false
#db.url=jdbc:oracle:thin:@127.0.0.1:1521:sample001
#db.url=jdbc:postgresql://localhost/sample001?stringtype=unspecified
#db.url=jdbc:derby:sample001;create=true
#db.url=jdbc:hsqldb:file:sample001;shutdown=true
#db.url=jdbc:jtds:sqlserver://localhost:1433/sample001;useCursors=true;bufferMaxMemory=10240;lobBuffer=5242880
#db.url=jdbc:db2://localhost/sampclnt
#db.url=jdbc:informix-sqli://localhost:9088/sampleroot:INFORMIXSERVER=ol_ids_1150_1
#db.url=jdbc:interbase://localhost//opt/interbase/data/sampleclient.gdb
db.url=jdbc:h2:sampleclient;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000
#db.url=jdbc:interbase://localhost//opt/interbase/data/sample001.gdb
db.url=jdbc:h2:sample001;AUTO_SERVER=TRUE;LOCK_TIMEOUT=60000

# The user to login as who can create and update tables
db.user=symmetric
Expand Down

0 comments on commit f03262a

Please sign in to comment.