]> source.dussan.org Git - jackcess.git/commitdiff
cookbook updates
authorJames Ahlborn <jtahlborn@yahoo.com>
Wed, 6 Nov 2013 03:25:46 +0000 (03:25 +0000)
committerJames Ahlborn <jtahlborn@yahoo.com>
Wed, 6 Nov 2013 03:25:46 +0000 (03:25 +0000)
git-svn-id: https://svn.code.sf.net/p/jackcess/code/jackcess/trunk@833 f203690c-595d-4dc9-a70b-905162fa7fd2

src/site/xdoc/cookbook.xml

index 2d0ec1ba2747bf691e2cdde889a40cacaa8637fd..7bb31a9f86e9229f7a9821f7c2e4937836774663 100644 (file)
     </section>
 
     <section name="Finding Stuff">
+      <subsection name="Cursors, what are they good for?">
+        <p>
+          Actually, a lot!  Now that we've covered the basics, let's move into
+          some intermediate level topics.  The first and foremost is the use
+          of the <a
+          href="apidocs/com/healthmarketscience/jackcess/Cursor.html">Cursor</a>.
+          As mentioned earlier, Cursors are the best way to interact with the
+          data in a Table (beyond trivial data entry).  If you are familiar
+          with databases in general, then cursors should be a familiar idea.
+          A Cursor is, in essence, the combination of a Table and a "bookmark"
+          pointing to a Row of data in the Table.  The various Cursor
+          operations either move the bookmark around within the Table or
+          provide read/write operations on the current Row.  While caching and
+          re-using Cursor instances will provide benefits with respect to both
+          speed and memory, they are "lightweight" enough to be used in an
+          on-demand capacity.
+        </p>
+      </subsection>
+
       <p>
         FIXME, writeme
       </p>