diff --git a/documentation/quickstart/src/main/docbook/en-US/content/tutorial_native.xml b/documentation/quickstart/src/main/docbook/en-US/content/tutorial_native.xml
index a833dae129..5abda3342d 100644
--- a/documentation/quickstart/src/main/docbook/en-US/content/tutorial_native.xml
+++ b/documentation/quickstart/src/main/docbook/en-US/content/tutorial_native.xml
@@ -189,37 +189,87 @@
- The first few property are defining JDBC connection information. These tutorials
- utilize the H2 in-memory database. So these are all specific to running H2 in its in-memory mode.
- The 'connection.pool_size' is used to configure Hibernate's built-in connection pool how many
- connections
- to pool.
-
-
-
-
- The built-in Hibernate connection pool is in no way intended for production use. It
- lacks several features found on any decent connection pool.
-
-
+ The first few property tags define
+ information about the JDBC connection. The
+ contains information directing
+ Hibernate to use the H2 in-memory
+ database. The rest of the properties are explained
+ in .
+
+
+
+
+ Configuration Options Used In the Native Configuration Example
+
+
+
+
Property Name
+
Description
+
+
+
+
+
+
+
+ configures Hibernate's built-in connection pool to
+ contain the specified number of connections.
+
+
+
+
+ The built-in Hibernate connection pool is inappropriate for
+ production use. It lacks several features found on any
+ decent connection pool.
+
+
+
+
+
+
+
+
+
+
+ specifies the particular SQL variant Hibernate should
+ generate.
+
+
+
+
+ In most cases, Hibernate can automatically determine which
+ dialect to use. This capability is valuable for applications
+ which target multiple databases.
+
+
+
+
+
+
+
+
+
+
+
show_sql
+
+
+
+
hbm2ddl.auto
+
+
+ enables automatic generation of database schemas directly
+ into the database.
+
+
+
+
+
+
+
- The dialect option specifies the particular SQL variant Hibernate should generate.
-
-
-
-
- In most cases, Hibernate is able to properly determine which dialect to use which is invaluable if
- your application targets multiple databases.
-
-
-
-
- The hbm2ddl.auto option turns on automatic generation of database schemas directly
- into the database.
-
-
- Finally, add the mapping file(s) for persistent classes to the configuration.
+ Finally, the mapping files provide persistent classes to the
+ configuration.