X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=psycopg2%2Fdoc%2Fapi%2Fpublic%2Fpsycopg2.extras.DictRow-class.html;fp=psycopg2%2Fdoc%2Fapi%2Fpublic%2Fpsycopg2.extras.DictRow-class.html;h=e278ca3b7af63ed137339fc1e0ee8484273c62e3;hb=e5bdc26e1423689c0ab3204931335787737946ea;hp=0000000000000000000000000000000000000000;hpb=f8dd312990da7cc744e1c148bfd395c18492f3f1;p=plcapi.git diff --git a/psycopg2/doc/api/public/psycopg2.extras.DictRow-class.html b/psycopg2/doc/api/public/psycopg2.extras.DictRow-class.html new file mode 100644 index 00000000..e278ca3b --- /dev/null +++ b/psycopg2/doc/api/public/psycopg2.extras.DictRow-class.html @@ -0,0 +1,376 @@ + + + +
+| Home | +Trees | +Index | +Help | ++ |
|---|
|
+ + |
+
+object--+ + | +list--+ + | + DictRow +
A row object that allow by-colun-name access to data.
+| Method Summary | |
|---|---|
| + | __init__(self,
+ cursor)
+ |
| + | __getitem__(self,
+ x)
+ |
| + | get(self,
+ x,
+ default)
+ |
| + | has_key(self,
+ x)
+ |
| + | items(self)
+ |
| + | keys(self)
+ |
| + | values(self)
+ |
| Inherited from list | |
| + |
++Return x+y... |
| + |
++Return y in x... |
| + |
++Return del x[y]... |
| + |
++Use of negative indices is not supported. |
| + |
++Return x==y... |
| + |
++Return x>=y... |
| + |
++x.__getattribute__('name') <==> x.name |
| + |
++Use of negative indices is not supported. |
| + |
++Return x>y... |
| + |
++Return hash(x)... |
| + |
++Return x+=y... |
| + |
++Return x*=y... |
| + |
++Return iter(x)... |
| + |
++Return x<=y... |
| + |
++Return len(x)... |
| + |
++Return x<y... |
| + |
++Return x*n... |
| + |
++Return x!=y... |
| + |
++Return a new object with type S, a subtype of T... |
| + |
++Return repr(x)... |
| + |
++Return n*x... |
| + |
++Return x[i]=y... |
| + |
++Use of negative indices is not supported. |
| + |
++append object to end |
| + |
++return number of occurrences of value |
| + |
++extend list by appending elements from the iterable |
| + |
++L.index(value, [start, [stop]]) -> integer -- return first index of value |
| + |
++insert object before index |
| + |
++remove and return item at index (default last) |
| + |
++remove first occurrence of value |
| + |
++reverse IN PLACE |
| + |
++stable sort IN PLACE; cmpfunc(x, y) -> -1, 0, 1 |
| Inherited from object | |
| + |
++x.__delattr__('name') <==> del x.name |
| + |
++helper for pickle |
| + |
++helper for pickle |
| + |
++x.__setattr__('name', value) <==> x.name = value |
| + |
++Return str(x)... |
| Method Details |
|---|
+ __init__(self,
+ cursor)
+
+ |
+ __getitem__(self,
+ x)
+
+ |
+ get(self, + x, + default=None) ++
|
+ has_key(self, + x) ++
|
+ items(self) ++
|
+ keys(self) ++
|
+ values(self) ++
|
| Home | +Trees | +Index | +Help | ++ |
|---|
| Generated by Epydoc 2.1 on Sat Jan 14 01:42:36 2006 | ++ http://epydoc.sf.net + | +