Added ex_access.py, and added typemaps, etc. to make it all work.

This changeset also includes configure and Make.base changes to
force -g on for setup.py, and to *disable* -O if debug is enabled.
That's probably not wanted in the release tree, but is essential
for debugging SWIG.

refs #31

--HG--
extra : rebase_source : d6eb4ffab30aa8901b73467e038cb82168308545
This commit is contained in:
Don Anderson
2011-03-31 07:44:57 -04:00
parent 840a648121
commit 8d2fdaa955
6 changed files with 293 additions and 40 deletions

44
examples/python/ex_access.py Executable file
View File

@@ -0,0 +1,44 @@
#!/usr/bin/env PYTHONPATH=../../lang/python:../../lang/python/src python
#
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2008-2011 WiredTiger, Inc.
# All rights reserved.
#
# ex_access.py
# demonstrates how to create and access a simple table.
#
import wiredtiger
import sys
home = 'WT_TEST'
try:
conn = wiredtiger.wiredtiger_open(home, None, 'create')
print('connected: ' + `conn`);
session = conn.open_session(None, None)
except BaseException as e:
print('Error connecting to', (home + ':'), e);
sys.exit(1)
# Note: further error checking omitted for clarity.
session.create_table('access', 'key_format=S,value_format=S')
cursor = session.open_cursor('table:access', None, None)
# Insert a record.
cursor.set_key('key1')
cursor.set_value('value1')
# TODO: remove try block when cursor.insert works
try:
cursor.insert()
except BaseException as tuple:
print('Error cursor insert: ', tuple);
for key, value in cursor:
print('Got record: ' + key + ' : ' + value)
conn.close(None)
sys.exit(0)