sqlite3-ruby 1.3.0.beta.2-x86-mswin32-60

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/API_CHANGES.rdoc +48 -0
  2. data/CHANGELOG.rdoc +108 -0
  3. data/ChangeLog.cvs +88 -0
  4. data/LICENSE +27 -0
  5. data/Manifest.txt +44 -0
  6. data/README.rdoc +54 -0
  7. data/Rakefile +10 -0
  8. data/ext/sqlite3/database.c +693 -0
  9. data/ext/sqlite3/database.h +15 -0
  10. data/ext/sqlite3/exception.c +94 -0
  11. data/ext/sqlite3/exception.h +8 -0
  12. data/ext/sqlite3/extconf.rb +39 -0
  13. data/ext/sqlite3/sqlite3.c +33 -0
  14. data/ext/sqlite3/sqlite3_ruby.h +43 -0
  15. data/ext/sqlite3/statement.c +419 -0
  16. data/ext/sqlite3/statement.h +16 -0
  17. data/faq/faq.rb +145 -0
  18. data/faq/faq.yml +426 -0
  19. data/lib/sqlite3.rb +10 -0
  20. data/lib/sqlite3/1.8/sqlite3_native.so +0 -0
  21. data/lib/sqlite3/1.9/sqlite3_native.so +0 -0
  22. data/lib/sqlite3/constants.rb +49 -0
  23. data/lib/sqlite3/database.rb +568 -0
  24. data/lib/sqlite3/errors.rb +44 -0
  25. data/lib/sqlite3/pragmas.rb +280 -0
  26. data/lib/sqlite3/resultset.rb +126 -0
  27. data/lib/sqlite3/statement.rb +146 -0
  28. data/lib/sqlite3/translator.rb +114 -0
  29. data/lib/sqlite3/value.rb +57 -0
  30. data/lib/sqlite3/version.rb +16 -0
  31. data/setup.rb +1333 -0
  32. data/tasks/faq.rake +9 -0
  33. data/tasks/gem.rake +31 -0
  34. data/tasks/native.rake +31 -0
  35. data/tasks/vendor_sqlite3.rake +107 -0
  36. data/test/helper.rb +3 -0
  37. data/test/test_database.rb +291 -0
  38. data/test/test_deprecated.rb +25 -0
  39. data/test/test_encoding.rb +115 -0
  40. data/test/test_integration.rb +545 -0
  41. data/test/test_integration_open_close.rb +30 -0
  42. data/test/test_integration_pending.rb +113 -0
  43. data/test/test_integration_resultset.rb +183 -0
  44. data/test/test_integration_statement.rb +194 -0
  45. data/test/test_sqlite3.rb +9 -0
  46. data/test/test_statement.rb +207 -0
  47. metadata +181 -0
data/lib/sqlite3.rb ADDED
@@ -0,0 +1,10 @@
1
+ # support multiple ruby version (fat binaries under windows)
2
+ begin
3
+ RUBY_VERSION =~ /(\d+.\d+)/
4
+ require "sqlite3/#{$1}/sqlite3_native"
5
+ rescue LoadError
6
+ require 'sqlite3/sqlite3_native'
7
+ end
8
+
9
+ require 'sqlite3/database'
10
+ require 'sqlite3/version'
Binary file
Binary file
@@ -0,0 +1,49 @@
1
+ module SQLite3 ; module Constants
2
+
3
+ module TextRep
4
+ UTF8 = 1
5
+ UTF16LE = 2
6
+ UTF16BE = 3
7
+ UTF16 = 4
8
+ ANY = 5
9
+ end
10
+
11
+ module ColumnType
12
+ INTEGER = 1
13
+ FLOAT = 2
14
+ TEXT = 3
15
+ BLOB = 4
16
+ NULL = 5
17
+ end
18
+
19
+ module ErrorCode
20
+ OK = 0 # Successful result
21
+ ERROR = 1 # SQL error or missing database
22
+ INTERNAL = 2 # An internal logic error in SQLite
23
+ PERM = 3 # Access permission denied
24
+ ABORT = 4 # Callback routine requested an abort
25
+ BUSY = 5 # The database file is locked
26
+ LOCKED = 6 # A table in the database is locked
27
+ NOMEM = 7 # A malloc() failed
28
+ READONLY = 8 # Attempt to write a readonly database
29
+ INTERRUPT = 9 # Operation terminated by sqlite_interrupt()
30
+ IOERR = 10 # Some kind of disk I/O error occurred
31
+ CORRUPT = 11 # The database disk image is malformed
32
+ NOTFOUND = 12 # (Internal Only) Table or record not found
33
+ FULL = 13 # Insertion failed because database is full
34
+ CANTOPEN = 14 # Unable to open the database file
35
+ PROTOCOL = 15 # Database lock protocol error
36
+ EMPTY = 16 # (Internal Only) Database table is empty
37
+ SCHEMA = 17 # The database schema changed
38
+ TOOBIG = 18 # Too much data for one row of a table
39
+ CONSTRAINT = 19 # Abort due to contraint violation
40
+ MISMATCH = 20 # Data type mismatch
41
+ MISUSE = 21 # Library used incorrectly
42
+ NOLFS = 22 # Uses OS features not supported on host
43
+ AUTH = 23 # Authorization denied
44
+
45
+ ROW = 100 # sqlite_step() has another row ready
46
+ DONE = 101 # sqlite_step() has finished executing
47
+ end
48
+
49
+ end ; end
@@ -0,0 +1,568 @@
1
+ require 'sqlite3/constants'
2
+ require 'sqlite3/errors'
3
+ require 'sqlite3/pragmas'
4
+ require 'sqlite3/statement'
5
+ require 'sqlite3/translator'
6
+ require 'sqlite3/value'
7
+
8
+ module SQLite3
9
+
10
+ # The Database class encapsulates a single connection to a SQLite3 database.
11
+ # Its usage is very straightforward:
12
+ #
13
+ # require 'sqlite3'
14
+ #
15
+ # SQLite3::Database.new( "data.db" ) do |db|
16
+ # db.execute( "select * from table" ) do |row|
17
+ # p row
18
+ # end
19
+ # end
20
+ #
21
+ # It wraps the lower-level methods provides by the selected driver, and
22
+ # includes the Pragmas module for access to various pragma convenience
23
+ # methods.
24
+ #
25
+ # The Database class provides type translation services as well, by which
26
+ # the SQLite3 data types (which are all represented as strings) may be
27
+ # converted into their corresponding types (as defined in the schemas
28
+ # for their tables). This translation only occurs when querying data from
29
+ # the database--insertions and updates are all still typeless.
30
+ #
31
+ # Furthermore, the Database class has been designed to work well with the
32
+ # ArrayFields module from Ara Howard. If you require the ArrayFields
33
+ # module before performing a query, and if you have not enabled results as
34
+ # hashes, then the results will all be indexible by field name.
35
+ class Database
36
+ include Pragmas
37
+
38
+ class << self
39
+
40
+ alias :open :new
41
+
42
+ # Quotes the given string, making it safe to use in an SQL statement.
43
+ # It replaces all instances of the single-quote character with two
44
+ # single-quote characters. The modified string is returned.
45
+ def quote( string )
46
+ string.gsub( /'/, "''" )
47
+ end
48
+
49
+ end
50
+
51
+ # A boolean that indicates whether rows in result sets should be returned
52
+ # as hashes or not. By default, rows are returned as arrays.
53
+ attr_accessor :results_as_hash
54
+
55
+ # A boolean indicating whether or not type translation is enabled for this
56
+ # database.
57
+ attr_accessor :type_translation
58
+
59
+ # Return the type translator employed by this database instance. Each
60
+ # database instance has its own type translator; this allows for different
61
+ # type handlers to be installed in each instance without affecting other
62
+ # instances. Furthermore, the translators are instantiated lazily, so that
63
+ # if a database does not use type translation, it will not be burdened by
64
+ # the overhead of a useless type translator. (See the Translator class.)
65
+ def translator
66
+ @translator ||= Translator.new
67
+ end
68
+
69
+ # Installs (or removes) a block that will be invoked for every access
70
+ # to the database. If the block returns 0 (or +nil+), the statement
71
+ # is allowed to proceed. Returning 1 causes an authorization error to
72
+ # occur, and returning 2 causes the access to be silently denied.
73
+ def authorizer( &block )
74
+ self.authorizer = block
75
+ end
76
+
77
+ # Returns a Statement object representing the given SQL. This does not
78
+ # execute the statement; it merely prepares the statement for execution.
79
+ #
80
+ # The Statement can then be executed using Statement#execute.
81
+ #
82
+ def prepare sql
83
+ stmt = SQLite3::Statement.new( self, sql )
84
+ return stmt unless block_given?
85
+
86
+ begin
87
+ yield stmt
88
+ ensure
89
+ stmt.close
90
+ end
91
+ end
92
+
93
+ # Executes the given SQL statement. If additional parameters are given,
94
+ # they are treated as bind variables, and are bound to the placeholders in
95
+ # the query.
96
+ #
97
+ # Note that if any of the values passed to this are hashes, then the
98
+ # key/value pairs are each bound separately, with the key being used as
99
+ # the name of the placeholder to bind the value to.
100
+ #
101
+ # The block is optional. If given, it will be invoked for each row returned
102
+ # by the query. Otherwise, any results are accumulated into an array and
103
+ # returned wholesale.
104
+ #
105
+ # See also #execute2, #query, and #execute_batch for additional ways of
106
+ # executing statements.
107
+ def execute sql, bind_vars = [], *args, &block
108
+ # FIXME: This is a terrible hack and should be removed but is required
109
+ # for older versions of rails
110
+ hack = Object.const_defined?(:ActiveRecord) && sql =~ /^PRAGMA index_list/
111
+
112
+ if bind_vars.nil? || !args.empty?
113
+ if args.empty?
114
+ bind_vars = []
115
+ else
116
+ bind_vars = [nil] + args
117
+ end
118
+
119
+ warn(<<-eowarn) if $VERBOSE
120
+ #{caller[0]} is calling SQLite3::Database#execute with nil or multiple bind params
121
+ without using an array. Please switch to passing bind parameters as an array.
122
+ eowarn
123
+ end
124
+
125
+ prepare( sql ) do |stmt|
126
+ stmt.bind_params(bind_vars)
127
+ if type_translation
128
+ stmt = ResultSet.new(self, stmt).to_a
129
+ end
130
+
131
+ if block_given?
132
+ stmt.each do |row|
133
+ if @results_as_hash
134
+ h = Hash[*stmt.columns.zip(row).flatten]
135
+ row.each_with_index { |r, i| h[i] = r }
136
+
137
+ yield h
138
+ else
139
+ yield row
140
+ end
141
+ end
142
+ else
143
+ if @results_as_hash
144
+ stmt.map { |row|
145
+ h = Hash[*stmt.columns.zip(row).flatten]
146
+ row.each_with_index { |r, i| h[i] = r }
147
+
148
+ # FIXME UGH TERRIBLE HACK!
149
+ h['unique'] = h['unique'].to_s if hack
150
+
151
+ h
152
+ }
153
+ else
154
+ stmt.to_a
155
+ end
156
+ end
157
+ end
158
+ end
159
+
160
+ # Executes the given SQL statement, exactly as with #execute. However, the
161
+ # first row returned (either via the block, or in the returned array) is
162
+ # always the names of the columns. Subsequent rows correspond to the data
163
+ # from the result set.
164
+ #
165
+ # Thus, even if the query itself returns no rows, this method will always
166
+ # return at least one row--the names of the columns.
167
+ #
168
+ # See also #execute, #query, and #execute_batch for additional ways of
169
+ # executing statements.
170
+ def execute2( sql, *bind_vars )
171
+ prepare( sql ) do |stmt|
172
+ result = stmt.execute( *bind_vars )
173
+ if block_given?
174
+ yield stmt.columns
175
+ result.each { |row| yield row }
176
+ else
177
+ return result.inject( [ stmt.columns ] ) { |arr,row|
178
+ arr << row; arr }
179
+ end
180
+ end
181
+ end
182
+
183
+ # Executes all SQL statements in the given string. By contrast, the other
184
+ # means of executing queries will only execute the first statement in the
185
+ # string, ignoring all subsequent statements. This will execute each one
186
+ # in turn. The same bind parameters, if given, will be applied to each
187
+ # statement.
188
+ #
189
+ # This always returns +nil+, making it unsuitable for queries that return
190
+ # rows.
191
+ def execute_batch( sql, bind_vars = [], *args )
192
+ # FIXME: remove this stuff later
193
+ unless [Array, Hash].include?(bind_vars.class)
194
+ bind_vars = [bind_vars]
195
+ warn(<<-eowarn) if $VERBOSE
196
+ #{caller[0]} is calling SQLite3::Database#execute_batch with bind parameters
197
+ that are not a list of a hash. Please switch to passing bind parameters as an
198
+ array or hash.
199
+ eowarn
200
+ end
201
+
202
+ # FIXME: remove this stuff later
203
+ if bind_vars.nil? || !args.empty?
204
+ if args.empty?
205
+ bind_vars = []
206
+ else
207
+ bind_vars = [nil] + args
208
+ end
209
+
210
+ warn(<<-eowarn) if $VERBOSE
211
+ #{caller[0]} is calling SQLite3::Database#execute_batch with nil or multiple bind params
212
+ without using an array. Please switch to passing bind parameters as an array.
213
+ eowarn
214
+ end
215
+
216
+ sql = sql.strip
217
+ until sql.empty? do
218
+ prepare( sql ) do |stmt|
219
+ # FIXME: this should probably use sqlite3's api for batch execution
220
+ # This implementation requires stepping over the results.
221
+ if bind_vars.length == stmt.bind_parameter_count
222
+ stmt.bind_params(bind_vars)
223
+ end
224
+ stmt.step
225
+ sql = stmt.remainder.strip
226
+ end
227
+ end
228
+ nil
229
+ end
230
+
231
+ # This is a convenience method for creating a statement, binding
232
+ # paramters to it, and calling execute:
233
+ #
234
+ # result = db.query( "select * from foo where a=?", 5 )
235
+ # # is the same as
236
+ # result = db.prepare( "select * from foo where a=?" ).execute( 5 )
237
+ #
238
+ # You must be sure to call +close+ on the ResultSet instance that is
239
+ # returned, or you could have problems with locks on the table. If called
240
+ # with a block, +close+ will be invoked implicitly when the block
241
+ # terminates.
242
+ def query( sql, bind_vars = [], *args )
243
+
244
+ if bind_vars.nil? || !args.empty?
245
+ if args.empty?
246
+ bind_vars = []
247
+ else
248
+ bind_vars = [nil] + args
249
+ end
250
+
251
+ warn(<<-eowarn) if $VERBOSE
252
+ #{caller[0]} is calling SQLite3::Database#query with nil or multiple bind params
253
+ without using an array. Please switch to passing bind parameters as an array.
254
+ eowarn
255
+ end
256
+
257
+ result = prepare( sql ).execute( bind_vars )
258
+ if block_given?
259
+ begin
260
+ yield result
261
+ ensure
262
+ result.close
263
+ end
264
+ else
265
+ return result
266
+ end
267
+ end
268
+
269
+ # A convenience method for obtaining the first row of a result set, and
270
+ # discarding all others. It is otherwise identical to #execute.
271
+ #
272
+ # See also #get_first_value.
273
+ def get_first_row( sql, *bind_vars )
274
+ execute( sql, *bind_vars ) { |row| return row }
275
+ nil
276
+ end
277
+
278
+ # A convenience method for obtaining the first value of the first row of a
279
+ # result set, and discarding all other values and rows. It is otherwise
280
+ # identical to #execute.
281
+ #
282
+ # See also #get_first_row.
283
+ def get_first_value( sql, *bind_vars )
284
+ execute( sql, *bind_vars ) { |row| return row[0] }
285
+ nil
286
+ end
287
+
288
+ alias :busy_timeout :busy_timeout=
289
+
290
+ # Creates a new function for use in SQL statements. It will be added as
291
+ # +name+, with the given +arity+. (For variable arity functions, use
292
+ # -1 for the arity.)
293
+ #
294
+ # The block should accept at least one parameter--the FunctionProxy
295
+ # instance that wraps this function invocation--and any other
296
+ # arguments it needs (up to its arity).
297
+ #
298
+ # The block does not return a value directly. Instead, it will invoke
299
+ # the FunctionProxy#set_result method on the +func+ parameter and
300
+ # indicate the return value that way.
301
+ #
302
+ # Example:
303
+ #
304
+ # db.create_function( "maim", 1 ) do |func, value|
305
+ # if value.nil?
306
+ # func.result = nil
307
+ # else
308
+ # func.result = value.split(//).sort.join
309
+ # end
310
+ # end
311
+ #
312
+ # puts db.get_first_value( "select maim(name) from table" )
313
+ def create_function name, arity, text_rep=Constants::TextRep::ANY, &block
314
+ define_function(name) do |*args|
315
+ fp = FunctionProxy.new
316
+ block.call(fp, *args)
317
+ fp.result
318
+ end
319
+ self
320
+ end
321
+
322
+ # Creates a new aggregate function for use in SQL statements. Aggregate
323
+ # functions are functions that apply over every row in the result set,
324
+ # instead of over just a single row. (A very common aggregate function
325
+ # is the "count" function, for determining the number of rows that match
326
+ # a query.)
327
+ #
328
+ # The new function will be added as +name+, with the given +arity+. (For
329
+ # variable arity functions, use -1 for the arity.)
330
+ #
331
+ # The +step+ parameter must be a proc object that accepts as its first
332
+ # parameter a FunctionProxy instance (representing the function
333
+ # invocation), with any subsequent parameters (up to the function's arity).
334
+ # The +step+ callback will be invoked once for each row of the result set.
335
+ #
336
+ # The +finalize+ parameter must be a +proc+ object that accepts only a
337
+ # single parameter, the FunctionProxy instance representing the current
338
+ # function invocation. It should invoke FunctionProxy#set_result to
339
+ # store the result of the function.
340
+ #
341
+ # Example:
342
+ #
343
+ # db.create_aggregate( "lengths", 1 ) do
344
+ # step do |func, value|
345
+ # func[ :total ] ||= 0
346
+ # func[ :total ] += ( value ? value.length : 0 )
347
+ # end
348
+ #
349
+ # finalize do |func|
350
+ # func.set_result( func[ :total ] || 0 )
351
+ # end
352
+ # end
353
+ #
354
+ # puts db.get_first_value( "select lengths(name) from table" )
355
+ #
356
+ # See also #create_aggregate_handler for a more object-oriented approach to
357
+ # aggregate functions.
358
+ def create_aggregate( name, arity, step=nil, finalize=nil,
359
+ text_rep=Constants::TextRep::ANY, &block )
360
+
361
+ factory = Class.new do
362
+ def self.step( &block )
363
+ define_method(:step, &block)
364
+ end
365
+
366
+ def self.finalize( &block )
367
+ define_method(:finalize, &block)
368
+ end
369
+ end
370
+
371
+ if block_given?
372
+ factory.instance_eval(&block)
373
+ else
374
+ factory.class_eval do
375
+ define_method(:step, step)
376
+ define_method(:finalize, finalize)
377
+ end
378
+ end
379
+
380
+ proxy = factory.new
381
+ proxy.extend(Module.new {
382
+ attr_accessor :ctx
383
+
384
+ def step( *args )
385
+ super(@ctx, *args)
386
+ end
387
+
388
+ def finalize
389
+ super(@ctx)
390
+ end
391
+ })
392
+ proxy.ctx = FunctionProxy.new
393
+ define_aggregator(name, proxy)
394
+ end
395
+
396
+ # This is another approach to creating an aggregate function (see
397
+ # #create_aggregate). Instead of explicitly specifying the name,
398
+ # callbacks, arity, and type, you specify a factory object
399
+ # (the "handler") that knows how to obtain all of that information. The
400
+ # handler should respond to the following messages:
401
+ #
402
+ # +arity+:: corresponds to the +arity+ parameter of #create_aggregate. This
403
+ # message is optional, and if the handler does not respond to it,
404
+ # the function will have an arity of -1.
405
+ # +name+:: this is the name of the function. The handler _must_ implement
406
+ # this message.
407
+ # +new+:: this must be implemented by the handler. It should return a new
408
+ # instance of the object that will handle a specific invocation of
409
+ # the function.
410
+ #
411
+ # The handler instance (the object returned by the +new+ message, described
412
+ # above), must respond to the following messages:
413
+ #
414
+ # +step+:: this is the method that will be called for each step of the
415
+ # aggregate function's evaluation. It should implement the same
416
+ # signature as the +step+ callback for #create_aggregate.
417
+ # +finalize+:: this is the method that will be called to finalize the
418
+ # aggregate function's evaluation. It should implement the
419
+ # same signature as the +finalize+ callback for
420
+ # #create_aggregate.
421
+ #
422
+ # Example:
423
+ #
424
+ # class LengthsAggregateHandler
425
+ # def self.arity; 1; end
426
+ #
427
+ # def initialize
428
+ # @total = 0
429
+ # end
430
+ #
431
+ # def step( ctx, name )
432
+ # @total += ( name ? name.length : 0 )
433
+ # end
434
+ #
435
+ # def finalize( ctx )
436
+ # ctx.set_result( @total )
437
+ # end
438
+ # end
439
+ #
440
+ # db.create_aggregate_handler( LengthsAggregateHandler )
441
+ # puts db.get_first_value( "select lengths(name) from A" )
442
+ def create_aggregate_handler( handler )
443
+ proxy = Class.new do
444
+ def initialize handler
445
+ @handler = handler
446
+ @fp = FunctionProxy.new
447
+ end
448
+
449
+ def step( *args )
450
+ @handler.step(@fp, *args)
451
+ end
452
+
453
+ def finalize
454
+ @handler.finalize @fp
455
+ @fp.result
456
+ end
457
+ end
458
+ define_aggregator(handler.name, proxy.new(handler.new))
459
+ self
460
+ end
461
+
462
+ # Begins a new transaction. Note that nested transactions are not allowed
463
+ # by SQLite, so attempting to nest a transaction will result in a runtime
464
+ # exception.
465
+ #
466
+ # The +mode+ parameter may be either <tt>:deferred</tt> (the default),
467
+ # <tt>:immediate</tt>, or <tt>:exclusive</tt>.
468
+ #
469
+ # If a block is given, the database instance is yielded to it, and the
470
+ # transaction is committed when the block terminates. If the block
471
+ # raises an exception, a rollback will be performed instead. Note that if
472
+ # a block is given, #commit and #rollback should never be called
473
+ # explicitly or you'll get an error when the block terminates.
474
+ #
475
+ # If a block is not given, it is the caller's responsibility to end the
476
+ # transaction explicitly, either by calling #commit, or by calling
477
+ # #rollback.
478
+ def transaction( mode = :deferred )
479
+ execute "begin #{mode.to_s} transaction"
480
+ @transaction_active = true
481
+
482
+ if block_given?
483
+ abort = false
484
+ begin
485
+ yield self
486
+ rescue ::Object
487
+ abort = true
488
+ raise
489
+ ensure
490
+ abort and rollback or commit
491
+ end
492
+ end
493
+
494
+ true
495
+ end
496
+
497
+ # Commits the current transaction. If there is no current transaction,
498
+ # this will cause an error to be raised. This returns +true+, in order
499
+ # to allow it to be used in idioms like
500
+ # <tt>abort? and rollback or commit</tt>.
501
+ def commit
502
+ execute "commit transaction"
503
+ @transaction_active = false
504
+ true
505
+ end
506
+
507
+ # Rolls the current transaction back. If there is no current transaction,
508
+ # this will cause an error to be raised. This returns +true+, in order
509
+ # to allow it to be used in idioms like
510
+ # <tt>abort? and rollback or commit</tt>.
511
+ def rollback
512
+ execute "rollback transaction"
513
+ @transaction_active = false
514
+ true
515
+ end
516
+
517
+ # Returns +true+ if there is a transaction active, and +false+ otherwise.
518
+ def transaction_active?
519
+ @transaction_active
520
+ end
521
+
522
+ # A helper class for dealing with custom functions (see #create_function,
523
+ # #create_aggregate, and #create_aggregate_handler). It encapsulates the
524
+ # opaque function object that represents the current invocation. It also
525
+ # provides more convenient access to the API functions that operate on
526
+ # the function object.
527
+ #
528
+ # This class will almost _always_ be instantiated indirectly, by working
529
+ # with the create methods mentioned above.
530
+ class FunctionProxy
531
+ attr_accessor :result
532
+
533
+ # Create a new FunctionProxy that encapsulates the given +func+ object.
534
+ # If context is non-nil, the functions context will be set to that. If
535
+ # it is non-nil, it must quack like a Hash. If it is nil, then none of
536
+ # the context functions will be available.
537
+ def initialize
538
+ @result = nil
539
+ @context = {}
540
+ end
541
+
542
+ # Set the result of the function to the given error message.
543
+ # The function will then return that error.
544
+ def set_error( error )
545
+ @driver.result_error( @func, error.to_s, -1 )
546
+ end
547
+
548
+ # (Only available to aggregate functions.) Returns the number of rows
549
+ # that the aggregate has processed so far. This will include the current
550
+ # row, and so will always return at least 1.
551
+ def count
552
+ @driver.aggregate_count( @func )
553
+ end
554
+
555
+ # Returns the value with the given key from the context. This is only
556
+ # available to aggregate functions.
557
+ def []( key )
558
+ @context[ key ]
559
+ end
560
+
561
+ # Sets the value with the given key in the context. This is only
562
+ # available to aggregate functions.
563
+ def []=( key, value )
564
+ @context[ key ] = value
565
+ end
566
+ end
567
+ end
568
+ end