| |
1 |
1 |
# |
| |
2 |
2 |
# This is an example how to use the nx mongo mapping. We show here |
| |
3 |
3 |
# single class mapped to the mongo db with sing and multivalued |
| |
4 |
4 |
# scalars together with some querying options. |
| |
5 |
5 |
# |
| |
6 |
6 |
# Gustaf Neumann fecit, April 2011 |
| |
7 |
7 |
# |
| |
8 |
8 |
package require nx::mongo |
| |
|
9 |
#nsf::configure debug 2 |
| |
9 |
10 |
|
| |
10 |
11 |
# Establish connection to the database |
| |
11 |
12 |
::nx::mongo::db connect -db "tutorial" |
| |
12 |
13 |
|
| |
13 |
14 |
# Make sure, we start always from scratch |
| |
14 |
15 |
nx::mongo::db remove tutorial.persons {} |
| |
15 |
16 |
|
| |
16 |
17 |
# |
| |
17 |
18 |
# Create the application class "Person" |
| |
18 |
19 |
# |
| |
19 |
20 |
nx::mongo::Class create Person { |
| |
20 |
21 |
:index name |
| |
21 |
22 |
|
| |
22 |
23 |
:property name:required |
| |
23 |
24 |
:property projects:0..n {set :incremental 1} |
| |
24 |
25 |
:property age:integer |
| |
25 |
26 |
} |
| |
26 |
27 |
|
| |
27 |
28 |
# |
| |
28 |
29 |
# Insert a tuple to the database via creating an object, saving and |