/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to include/Makefile.in

  • Committer: edam
  • Date: 2010-07-29 20:56:19 UTC
  • Revision ID: edam@waxworlds.org-20100729205619-a9yo4uzu647nvnsj
- renamed database to connection to better identify what it is (would database_connection be better though?)
- moved basic_statement and basic_transaction to sqlite::detail
- made sqlite::threadsafe() return the threading mode int, not a bool
- renamed row::index() to row_number() so it isn't confused with column index
- added typedef for deferred_transaction
- added early rollback method to transaction_guard
- allowed transaction_guard::~transaction_guard() to throw exceptions, since when it needs to, we're really screwed anyway
- bugfix: query::reset() didn't reset the internal row counter
- added query::num_results()
- added docs/design-notes
- reimplemented query::iterator so that increment() (which performs a step() on the query) now caches the returned row to be returned during dereference() (previously it stashed details and returned new row!?)
- bugfix: resetting active queries during rollbacks would hang!

Show diffs side-by-side

added added

removed removed

97
97
CYGPATH_W = @CYGPATH_W@
98
98
DEFS = @DEFS@
99
99
DEPDIR = @DEPDIR@
100
 
DLLTOOL = @DLLTOOL@
101
100
DSYMUTIL = @DSYMUTIL@
102
101
DUMPBIN = @DUMPBIN@
103
102
ECHO_C = @ECHO_C@
122
121
LN_S = @LN_S@
123
122
LTLIBOBJS = @LTLIBOBJS@
124
123
MAKEINFO = @MAKEINFO@
125
 
MANIFEST_TOOL = @MANIFEST_TOOL@
126
124
MKDIR_P = @MKDIR_P@
127
125
NM = @NM@
128
126
NMEDIT = @NMEDIT@
148
146
abs_srcdir = @abs_srcdir@
149
147
abs_top_builddir = @abs_top_builddir@
150
148
abs_top_srcdir = @abs_top_srcdir@
151
 
ac_ct_AR = @ac_ct_AR@
152
149
ac_ct_CC = @ac_ct_CC@
153
150
ac_ct_CXX = @ac_ct_CXX@
154
151
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
182
179
libexecdir = @libexecdir@
183
180
localedir = @localedir@
184
181
localstatedir = @localstatedir@
 
182
lt_ECHO = @lt_ECHO@
185
183
mandir = @mandir@
186
184
mkdir_p = @mkdir_p@
187
185
oldincludedir = @oldincludedir@