Skip to content

Commit c966f34

Browse files
Remove obsoleted hibernate configuration prefix
The documentation was still prefixing some configuration properties with the "hibernate." prefix, which has been removed since NH 2.0.0.GA.
1 parent f400ccb commit c966f34

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

doc/reference/modules/toolset_guide.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
<para>
6868
You <emphasis>must</emphasis> specify a SQL <literal>Dialect</literal> via the
69-
<literal>hibernate.dialect</literal> property when using this tool.
69+
<literal>dialect</literal> configuration property when using this tool.
7070
</para>
7171

7272
<sect2 id="toolsetguide-s1-2" revision="1">
@@ -262,23 +262,23 @@ new SchemaExport(cfg).Create(false, true);]]></programlisting>
262262
</thead>
263263
<tbody>
264264
<row>
265-
<entry><literal>hibernate.connection.driver_class</literal></entry>
265+
<entry><literal>connection.driver_class</literal></entry>
266266
<entry>jdbc driver class</entry>
267267
</row>
268268
<row>
269-
<entry><literal>hibernate.connection.url</literal></entry>
269+
<entry><literal>connection.url</literal></entry>
270270
<entry>jdbc url</entry>
271271
</row>
272272
<row>
273-
<entry><literal>hibernate.connection.username</literal></entry>
273+
<entry><literal>connection.username</literal></entry>
274274
<entry>database user</entry>
275275
</row>
276276
<row>
277-
<entry><literal>hibernate.connection.password</literal></entry>
277+
<entry><literal>connection.password</literal></entry>
278278
<entry>user password</entry>
279279
</row>
280280
<row>
281-
<entry><literal>hibernate.dialect</literal></entry>
281+
<entry><literal>dialect</literal></entry>
282282
<entry>dialect</entry>
283283
</row>
284284
</tbody>

src/NHibernate/CacheMode.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public enum CacheMode
3333
/// <summary>
3434
/// The session will never read items from the cache, but will add items
3535
/// to the cache as it reads them from the database. In this mode, the
36-
/// effect of <tt>hibernate.cache.use_minimal_puts</tt> is bypassed, in
36+
/// effect of <c>cache.use_minimal_puts</c> is bypassed, in
3737
/// order to <em>force</em> a cache refresh
3838
/// </summary>
3939
Refresh = Put | 4 // NH: include Put but have a different value
4040
}
41-
}
41+
}

0 commit comments

Comments
 (0)