-\normalbox{It is important to understand that different database/ODBC driver
-combinations handle transactions differently. One thing in particular that
-you must pay attention to is cursors, in regard to transactions. Cursors are
-what allow you to scroll through records forward and backward and to
-manipulate records as you scroll through them. When you issue a query, a
-cursor is created behind the scenes. The cursor keeps track of the query and
-keeps track of the current record pointer. After you commit or rollback a
-transaction, the cursor may be closed automatically. This is database
-dependent, and with some databases this behavior can be controlled through
-management functions. This means you would need to requery the datasource
-before you can perform any additional work using this cursor. This is only
-necessary however if the datasource closes the cursor after a commit or
-rollback. Use the
-\helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit}
-member function to determine the datasource's transaction behavior. Note, in
-many situations it is very inefficient to assume the cursor is closed and
-always requery. This could put a significant, unnecessary load on datasources
+\normalbox{It is important to understand that different database/ODBC driver
+combinations handle transactions differently. One thing in particular that
+you must pay attention to is cursors, in regard to transactions. Cursors are
+what allow you to scroll through records forward and backward and to
+manipulate records as you scroll through them. When you issue a query, a
+cursor is created behind the scenes. The cursor keeps track of the query and
+keeps track of the current record pointer. After you commit or rollback a
+transaction, the cursor may be closed automatically. This is database
+dependent, and with some databases this behavior can be controlled through
+management functions. This means you would need to requery the datasource
+before you can perform any additional work using this cursor. This is only
+necessary however if the datasource closes the cursor after a commit or
+rollback. Use the
+\helpref{wxDbTable::IsCursorClosedOnCommit}{wxdbtableiscursorclosedoncommit}
+member function to determine the datasource's transaction behavior. Note, in
+many situations it is very inefficient to assume the cursor is closed and
+always requery. This could put a significant, unnecessary load on datasources