Changeset 3399
- Timestamp:
- 03/19/08 10:21:38 (9 months ago)
- Files:
-
- estimatorplugin/0.10/estimatorplugin/dbhelper.py (modified) (1 diff)
- estimatorplugin/0.10/setup.py (modified) (1 diff)
- estimatorplugin/0.11/estimatorplugin/dbhelper.py (modified) (1 diff)
- estimatorplugin/0.11/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
estimatorplugin/0.10/estimatorplugin/dbhelper.py
r3360 r3399 119 119 120 120 121 def get_result_set( sql, *params):121 def get_result_set(env, sql, *params): 122 122 """Executes the query and returns a Result Set""" 123 tpl = get_all( sql, *params);123 tpl = get_all(env, sql, *params); 124 124 if tpl and tpl[0] and tpl[1]: 125 125 return ResultSet(tpl) estimatorplugin/0.10/setup.py
r3360 r3399 4 4 5 5 setup(name=PACKAGE, 6 version='0.0. 3',6 version='0.0.4', 7 7 packages=[PACKAGE], 8 8 url='http://www.trac-hacks.org/wiki/EstimatorPlugin', estimatorplugin/0.11/estimatorplugin/dbhelper.py
r3361 r3399 119 119 120 120 121 def get_result_set( sql, *params):121 def get_result_set(env, sql, *params): 122 122 """Executes the query and returns a Result Set""" 123 tpl = get_all( sql, *params);123 tpl = get_all(env, sql, *params); 124 124 if tpl and tpl[0] and tpl[1]: 125 125 return ResultSet(tpl) estimatorplugin/0.11/setup.py
r3361 r3399 4 4 5 5 setup(name=PACKAGE, 6 version='0.0. 3',6 version='0.0.4', 7 7 packages=[PACKAGE], 8 8 url='http://www.trac-hacks.org/wiki/EstimatorPlugin',
