source:
people/peter.buschman/backup_monitoring/dal/builtins/one_value.py@
1273
Last change on this file since 1273 was 976, checked in by , on Dec 6, 2011 at 10:19:33 AM | |
---|---|
File size: 171 bytes |
Line | |
---|---|
1 | ## |
2 | ## one_value - return the first column of the first row of an SQL query |
3 | # |
4 | def one_value(curs, query): |
5 | |
6 | curs.execute(query) |
7 | |
8 | return curs.fetchone()[0] |
9 |
Note:
See TracBrowser
for help on using the repository browser.