<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech Notes &#187; hibernate</title>
	<atom:link href="http://www.ryannitz.org/tech-notes/tag/hibernate/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryannitz.org/tech-notes</link>
	<description>Miscellaneous technology examples and notes</description>
	<lastBuildDate>Sun, 03 Apr 2011 16:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<image>
  <link>http://www.ryannitz.org/tech-notes</link>
  <url>http://ryan-nitz/favicon.ico</url>
  <title>Tech Notes</title>
</image>
		<item>
		<title>Hibernate Pagination</title>
		<link>http://www.ryannitz.org/tech-notes/2008/06/23/hibernate-pagination/</link>
		<comments>http://www.ryannitz.org/tech-notes/2008/06/23/hibernate-pagination/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 18:27:36 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[hibernate]]></category>

		<guid isPermaLink="false">http://leisuremech.com/?p=14</guid>
		<description><![CDATA[The following is an example of Hibernate pagination using the Java persistence libraries: final Query query = getEntityManager().createQuery("select n FROM Foo n"); query.setFirstResult(10); query.setMaxResults(20); return query.getResultList();]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/hibernate_icon.gif"><img class="alignnone size-thumbnail wp-image-16" title="hibernate_icon" src="http://www.ryannitz.org/tech-notes/wp-content/uploads/2008/06/hibernate_icon.gif" alt="" width="120" height="120" /></a></p>
<p>The following is an example of <a title="Hibernate" href="http://www.hibernate.org" target="_blank">Hibernate</a> pagination using the <a title="Java persistence libraries" href="http://en.wikipedia.org/wiki/Java_Persistence_API" target="_blank">Java persistence libraries</a>:</p>
<pre>final Query query  = getEntityManager().createQuery("select n FROM Foo n");
query.setFirstResult(10);
query.setMaxResults(20);
return query.getResultList();</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ryannitz.org/tech-notes/2008/06/23/hibernate-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

