<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://www.linuxnetworks.de/doc/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.linuxnetworks.de/doc/index.php?action=history&amp;feed=atom&amp;title=OpenDBX%2FC%2B%2B_API%2F1.0%2FResult</id>
		<title>OpenDBX/C++ API/1.0/Result - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://www.linuxnetworks.de/doc/index.php?action=history&amp;feed=atom&amp;title=OpenDBX%2FC%2B%2B_API%2F1.0%2FResult"/>
		<link rel="alternate" type="text/html" href="https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;action=history"/>
		<updated>2026-06-15T19:13:21Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.11</generator>

	<entry>
		<id>https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3594&amp;oldid=prev</id>
		<title>Nose: 1 revision(s)</title>
		<link rel="alternate" type="text/html" href="https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3594&amp;oldid=prev"/>
				<updated>2009-04-07T11:24:12Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision(s)&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;tr style='vertical-align: top;'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 11:24, 7 April 2009&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Nose</name></author>	</entry>

	<entry>
		<id>https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3593&amp;oldid=prev</id>
		<title>: docbook2x update</title>
		<link rel="alternate" type="text/html" href="https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3593&amp;oldid=prev"/>
				<updated>2009-04-07T11:24:12Z</updated>
		
		<summary type="html">&lt;p&gt;docbook2x update&lt;/p&gt;
&lt;a href=&quot;https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;amp;diff=3593&amp;amp;oldid=3539&quot;&gt;Show changes&lt;/a&gt;</summary>
			</entry>

	<entry>
		<id>https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3539&amp;oldid=prev</id>
		<title>Nose: Result public members</title>
		<link rel="alternate" type="text/html" href="https://www.linuxnetworks.de/doc/index.php?title=OpenDBX/C%2B%2B_API/1.0/Result&amp;diff=3539&amp;oldid=prev"/>
				<updated>2009-03-04T08:36:18Z</updated>
		
		<summary type="html">&lt;p&gt;Result public members&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Public Member Functions ==&lt;br /&gt;
&lt;br /&gt;
 Result(&lt;br /&gt;
    const Result &amp;amp;ref&lt;br /&gt;
 ) throw ()&lt;br /&gt;
&lt;br /&gt;
Copy constructor.&lt;br /&gt;
&lt;br /&gt;
 ~Result() throw ()&lt;br /&gt;
&lt;br /&gt;
Destroys a Result instance if no other references exist.&lt;br /&gt;
&lt;br /&gt;
 unsigned long columnCount() throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns the number of columns available in this result set.&lt;br /&gt;
&lt;br /&gt;
 const string columnName(&lt;br /&gt;
    unsigned long pos&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns the name of the column in the current result set.&lt;br /&gt;
&lt;br /&gt;
 unsigned long columnPos(&lt;br /&gt;
    const string &amp;amp;name&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Maps the column name to the column number required by other methods.&lt;br /&gt;
&lt;br /&gt;
 odbxtype columnType(&lt;br /&gt;
    unsigned long pos&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns the type of the column in the current result set.&lt;br /&gt;
&lt;br /&gt;
 unsigned long fieldLength(&lt;br /&gt;
    unsigned long pos&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns the size of the content in the current row at the specified postion.&lt;br /&gt;
&lt;br /&gt;
 const char* fieldValue(&lt;br /&gt;
    unsigned long pos&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns a pointer to the content in the current row at the specified postion.&lt;br /&gt;
&lt;br /&gt;
 void finish() throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Retrieves unfetched rows and cleans up the available result sets.&lt;br /&gt;
&lt;br /&gt;
 Lob getLob(&lt;br /&gt;
    const char* value&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Creates a large object instance if supported by the database.&lt;br /&gt;
&lt;br /&gt;
 odbxres getResult(&lt;br /&gt;
    struct timeval* timeout=NULL,&lt;br /&gt;
    unsigned long chunk=0&lt;br /&gt;
 ) throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Fetches one result set from the database server.&lt;br /&gt;
&lt;br /&gt;
 odbxrow getRow() throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Makes data of next row available.&lt;br /&gt;
&lt;br /&gt;
 Result&amp;amp; operator=(&lt;br /&gt;
    const Result &amp;amp;ref&lt;br /&gt;
 ) throw ()&lt;br /&gt;
&lt;br /&gt;
Assigns a Result instance to another one.&lt;br /&gt;
&lt;br /&gt;
 uint64_t rowsAffected() throw ( std::exception )&lt;br /&gt;
&lt;br /&gt;
Returns the number of rows affected by DELETE, INSERT of UPDATE statements.&lt;/div&gt;</summary>
		<author><name>Nose</name></author>	</entry>

	</feed>