Mike Dirolf
723f823ea1
API CHANGE _id is aded to hash instances that get inserted / saved
2009-08-14 17:26:50 -04:00
Mike Dirolf
402b895385
find_one takes same options as find
2009-08-14 16:43:12 -04:00
Mike Dirolf
28a80f1b5e
Deprecate Collection#find_first in favor of Collection#find_one, also improve docs
2009-08-14 15:39:49 -04:00
Mike Dirolf
6cb8c9f49b
API CHANGE Add :safe option for Collection#insert and Collection#save
...
The API change is minor: Collection#insert({...}, {...}, {...}) no
longer works for inserting multiple documents - instead you must pass
an explicit Array: Collection#insert([{...}, {...}, {...}])
2009-08-14 14:25:29 -04:00
Mike Dirolf
7e0a1b9721
add OrderedHash[] initialization
2009-08-14 11:38:25 -04:00
Mike Dirolf
23e09141a0
better error checking for database names
2009-08-13 16:26:51 -04:00
Mike Dirolf
431039a82a
add InvalidName exception and use that where appropriate
2009-08-13 15:52:11 -04:00
Mike Dirolf
64380ad00c
Deprecating Collection#modify, Collection#replace and Collection#repsert in favor of Collection#update
2009-08-13 15:18:53 -04:00
Mike Dirolf
acc1076df7
test that already passes
2009-08-13 10:29:08 -04:00
Mike Dirolf
4963da9e89
add support for snapshot option to Collection#find
2009-08-11 11:42:34 -04:00
Mike Dirolf
1e4728a77f
fix a deadlock with threaded queries
2009-08-10 16:10:52 -04:00
Mike Dirolf
691e65f684
API CHANGE: fixing DB#collection_names() - only return collection name, not full name. only return names of valid collections on this database
2009-08-06 15:52:07 -04:00
Mike Dirolf
fe7d7745c7
add collection name validation
2009-08-04 14:24:18 -04:00
Mike Dirolf
91d6ab4caa
rename collection
2009-08-04 14:16:02 -04:00
Mike Dirolf
0a60ad0d7b
support for long type in pure ruby [enc|dec]oder
2009-08-03 17:57:44 -04:00
Mike Dirolf
5dc64d8c1d
minor: more tests that already pass
2009-07-28 15:00:54 -04:00
Mike Dirolf
4de3f61787
minor: test that already passes
2009-07-28 14:44:35 -04:00
Mike Dirolf
7da51cc317
save returns _id as well
2009-07-28 12:08:29 -04:00
Paul Dlug
6b9b922266
Generate _id on the client side if no _id is provided to insert/save. The generated ObjectID (or array of ObjectID's in the case of a multiple insert) is return. Closes RUBY-22 and RUBY-23.
...
Signed-off-by: Mike Dirolf <mike@dirolf.com>
2009-07-28 21:53:59 +08:00
Mike Dirolf
6cd976398e
minor: c ext return dates as UTC, update credits, tweak last commit
2009-07-16 16:32:57 -04:00
David James
91b1b0ad8f
Fix dates to return as UTC.
...
Signed-off-by: Mike Dirolf <mike@dirolf.com>
2009-07-17 04:26:56 +08:00
Mike Dirolf
dbd656580d
minor: fix test file for windows - open file in binary mode
2009-07-16 11:52:34 -04:00
Mike Dirolf
73d7b5ea5d
GridStore.list to list gridfs files
2009-07-15 10:06:45 -04:00
Mike Dirolf
c6536f0d27
count() is 0 for non-existant collections, not an error
2009-06-18 09:38:55 -04:00
Mike Dirolf
f0e176f351
minor: fix warnings
2009-06-04 15:32:26 -04:00
Mike Dirolf
e5ce547e87
use repsert instead of checking for document existence, update tests to match new index_information API
2009-06-02 14:37:58 -04:00
Mike Dirolf
cb3823f48f
Merge branch 'master' of git://github.com/jnunemaker/mongo-ruby-driver into jnunemaker/master
2009-06-02 14:20:19 -04:00
Mike Dirolf
25e960441b
API CHANGE: better, less redundant API for index_information
2009-06-02 11:24:52 -04:00
Mike Dirolf
2743fd39b1
failing test case for index on subfield
2009-06-02 09:27:50 -04:00
John Nunemaker
13a9cfe83f
Merge branch 'mongodb/master'
2009-06-01 23:24:16 -04:00
Mike Dirolf
71d7ff726b
don't allow invalid key names on inserts
2009-06-01 17:38:11 -04:00
John Nunemaker
f95102c2bb
Updated save to actually check if id exists in the collection.
2009-05-31 22:45:05 -04:00
John Nunemaker
4d7f06a6be
Implemented that index fields can also be specified with symbols.
2009-05-31 22:16:01 -04:00
Mike Dirolf
cabca61e0d
previous_error and reset_error_history. snuck in a quick fix to OrderedHash equality
2009-05-26 15:26:20 -04:00
Mike Dirolf
d5bed6e43e
test save
2009-05-18 09:59:10 -04:00
Mike Dirolf
37d6e16fe7
test and fix for BSON w/ negative integers. raise RangeError for out of range ints
2009-05-15 11:19:13 -04:00
Mike Dirolf
a9aa5e5271
fix for pure ruby encoder when _id is a falsey value. more tests
2009-05-12 14:21:17 -04:00
Eliot Horowitz
124409ee03
change test for spider monkey
2009-05-08 17:17:58 -04:00
Mike Dirolf
cea73c2712
dereference helper method
2009-04-28 14:55:36 -04:00
Mike Dirolf
29cdfe64f1
add group method on collections
2009-04-27 14:19:38 -04:00
Mike Dirolf
2dffc4b504
don't set _id to default value for hash
2009-04-24 10:03:40 -04:00
Mike Dirolf
c5ccdfe5b8
update tests for auto create _id index
2009-04-22 15:23:46 -04:00
Mike Dirolf
02b37f6e48
decoder for data_timestamp
2009-04-22 13:49:56 -04:00
Mike Dirolf
1312c70677
add support for unique index creation
2009-04-21 14:44:57 -04:00
Mike Dirolf
8bc4bb9962
do a db.error at the end of each teardown. hopefully this will fix the out of order messages that we've been experiencing
2009-03-13 17:09:19 -04:00
Mike Dirolf
2500996ce4
more debugging
2009-03-13 15:05:49 -04:00
Mike Dirolf
13c407cd85
support for db.eval
2009-03-13 11:03:52 -04:00
Mike Dirolf
4e406ac7c9
count doesn't exist on cursors, just collections
2009-03-12 18:38:11 -04:00
Mike Dirolf
ce406d92f7
test and update gemspec
2009-03-12 17:25:23 -04:00
Mike Dirolf
0f546eb5c5
add new code type rather than doing hacks based on field name. use code_w_scope instead of code
2009-03-12 15:34:15 -04:00