8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 16:03:03 +01:00
This commit is contained in:
Adriano dos Santos Fernandes 2020-06-17 13:54:34 -03:00
parent 7c1a0fee89
commit 5de3c1f5a4

View File

@ -31,7 +31,7 @@ using namespace Firebird;
/***
Sample usage:
create database 'c:\temp\slave.fdb';
create database 'c:\temp\replica.fdb';
create table persons (
id integer not null,
name varchar(60) not null,
@ -40,7 +40,7 @@ create table persons (
);
commit;
create database 'c:\temp\master.fdb';
create database 'c:\temp\main.fdb';
create table persons (
id integer not null,
name varchar(60) not null,
@ -54,7 +54,7 @@ create table replicate_config (
);
insert into replicate_config (name, data_source)
values ('ds1', 'c:\temp\slave.fdb');
values ('ds1', 'c:\temp\replica.fdb');
create trigger persons_replicate
after insert on persons