From 56656348ac425c01fec991c53460cfdbabfd6358 Mon Sep 17 00:00:00 2001 From: Pinaki Poddar Date: Tue, 25 May 2010 04:27:09 +0000 Subject: [PATCH] Add missing configuration file git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@947911 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/load.properties | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 openjpa-examples/openbooks/src/main/resources/load.properties diff --git a/openjpa-examples/openbooks/src/main/resources/load.properties b/openjpa-examples/openbooks/src/main/resources/load.properties new file mode 100644 index 000000000..a24f50d7b --- /dev/null +++ b/openjpa-examples/openbooks/src/main/resources/load.properties @@ -0,0 +1,27 @@ +#--------------------------------------------------------------------- +# Configuration for populating OpenBooks database. +# +# These properties control the database volume. +# These properties are read during DataLoader execution. +# The values here are same as the default values as set in the driver. +#--------------------------------------------------------------------- +# No. of Books in the database +openbook.Book.Count=100 + +# No. of Authors in the database +openbook.Author.Count=120 + +# No. of Customer in the database +openbook.Customer.Count=100 + +# Maximum no. of Authors per Book +openbook.Book.Author.Count=4 + +# Minimum and Maximum price of a Book +openbook.Book.Price.Min=5.99 +openbook.Book.Price.Max=120.99 + +# Minimum and Maximum initial inventory of a Book +openbook.Inventory.Min=100 +openbook.Inventory.Max=1000 +