?? init_schema.sql
字號:
delete from sync4j_sync_source_type where id='jdbc-testsync';
insert into sync4j_sync_source_type(id, description, class, admin_class)
values('jdbc-testsync','TestSyncSource','test.sync4j.TestSyncSource','');
delete from sync4j_connector where id='testsync';
insert into sync4j_connector(id, name, description, admin_class)
values('testsync','SyncConnectorTestSync','SyncConnector TestSync','');
delete from sync4j_connector_source_type where connector='testsync' and sourcetype='jdbc-testsync';
insert into sync4j_connector_source_type(connector, sourcetype)
values('testsync','jdbc-testsync');
delete from sync4j_module where id='testsync';
insert into sync4j_module (id, name, description)
values('testsync','testsync-1.0','Test Sync 1.0');
delete from sync4j_module_connector where module='testsync' and connector='testsync';
insert into sync4j_module_connector(module, connector)
values('testsync','testsync');
delete from sync4j_sync_source where uri='./testsync';
insert into sync4j_sync_source (uri, config, name, sourcetype)
values('./testsync', 'testsync/jdbc-testsync/TestSyncSource.xml','testsync','jdbc-testsync');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -