Sign in
apache
/
camel
/
camel-2.12.x
/
.
/
components
/
camel-spring
/
src
/
test
/
resources
/
sql
/
init.sql
blob: 432946466c517b944f4c4ef58e3196ba0295731c [
file
]
create
table
books
(
title varchar
(
50
));
insert
into
books
(
title
)
values
(
'Camel in Action'
);