<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[ODBC - 2 Tabellen]]></title><description><![CDATA[<p>Hallo,</p>
<p>gibt es eine Möglichkeit zwei Tabellen in einem Recordset einzulesen?<br />
Ich hab eine mysql Datenbank eingerichtet. jetzt will ich aber zwei Tabellen einlesen und auch schreiben können.<br />
Ich hab probiert eine neue CRecordset Klasse zu erstellen, dabei hat VC++ mir aber die andere Recordset-Klasse gelöscht...</p>
<p>Kann mir jemand helfen ? Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/53821/odbc-2-tabellen</link><generator>RSS for Node</generator><lastBuildDate>Mon, 01 Jun 2026 13:44:47 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/53821.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 01 Nov 2003 16:18:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Sat, 01 Nov 2003 16:18:18 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>gibt es eine Möglichkeit zwei Tabellen in einem Recordset einzulesen?<br />
Ich hab eine mysql Datenbank eingerichtet. jetzt will ich aber zwei Tabellen einlesen und auch schreiben können.<br />
Ich hab probiert eine neue CRecordset Klasse zu erstellen, dabei hat VC++ mir aber die andere Recordset-Klasse gelöscht...</p>
<p>Kann mir jemand helfen ? Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/384437</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/384437</guid><dc:creator><![CDATA[Spritey]]></dc:creator><pubDate>Sat, 01 Nov 2003 16:18:18 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 08:21:33 GMT]]></title><description><![CDATA[<p>Spritey schrieb:</p>
<blockquote>
<p>Hallo,</p>
<p>gibt es eine Möglichkeit zwei Tabellen in einem Recordset einzulesen?<br />
Ich hab eine mysql Datenbank eingerichtet. jetzt will ich aber zwei Tabellen einlesen und auch schreiben können.<br />
Ich hab probiert eine neue CRecordset Klasse zu erstellen, dabei hat VC++ mir aber die andere Recordset-Klasse gelöscht...</p>
<p>Kann mir jemand helfen ? Danke</p>
</blockquote>
<p>ja es geht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/385361</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385361</guid><dc:creator><![CDATA[007ski]]></dc:creator><pubDate>Mon, 03 Nov 2003 08:21:33 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 10:51:11 GMT]]></title><description><![CDATA[<p>Schau dir das mal an -&gt; <a href="http://www.c-plusplus.net/forum/viewtopic.php?t=48327&amp;highlight=odbc+join" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=48327&amp;highlight=odbc+join</a></p>
<p>Da hatte ich so ein ähnliches Problem und das hat super bei mir funktioniert!</p>
<p>Gruß</p>
<p>Holger</p>
]]></description><link>https://www.c-plusplus.net/forum/post/385512</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385512</guid><dc:creator><![CDATA[LJ_Skinny]]></dc:creator><pubDate>Mon, 03 Nov 2003 10:51:11 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 12:28:42 GMT]]></title><description><![CDATA[<p>LJ_Skinny schrieb:</p>
<blockquote>
<p>Schau dir das mal an -&gt; <a href="http://www.c-plusplus.net/forum/viewtopic.php?t=48327&amp;highlight=odbc+join" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic.php?t=48327&amp;highlight=odbc+join</a></p>
<p>Da hatte ich so ein ähnliches Problem und das hat super bei mir funktioniert!</p>
</blockquote>
<p>Wie hast du dein Problem denn dann gelöst ? Mit 2 Klassen oder hast du die Funktionen genommen die gepostetd wurden?</p>
<p>Danke für den Tip.</p>
<p>greets</p>
]]></description><link>https://www.c-plusplus.net/forum/post/385594</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385594</guid><dc:creator><![CDATA[Spritey]]></dc:creator><pubDate>Mon, 03 Nov 2003 12:28:42 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 13:03:35 GMT]]></title><description><![CDATA[<p>Evtl. hilft auch eine Klasse die eine Liste an Recordsets verwaltet:</p>
<pre><code class="language-cpp">#ifndef CRecordsetMap_h
#define CRecordsetMap_h

#include &lt;map&gt;

using namespace std;

class CRecordsetMap
{
public:
	 CRecordsetMap();
	virtual  ~CRecordsetMap();
	 CRecordsetMap(const CRecordsetMap &amp;copy);
	CRecordSet &amp;GetRecordSet(string table);
	map&lt;string,CRecordset&gt; Getrecords();
	void Setrecords(map&lt;string,CRecordset&gt; Records);
	void SetRecordset(CRecordset set);
protected:
	map&lt;string,CRecordset&gt; records;
private:

};

#endif
</code></pre>
<p>Devil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/385622</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385622</guid><dc:creator><![CDATA[phlox81]]></dc:creator><pubDate>Mon, 03 Nov 2003 13:03:35 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 13:32:09 GMT]]></title><description><![CDATA[<p>Danke euch.<br />
Ich hab jetzt nochmal probiert eine zweite CRecordset Klasse zu erstellen.<br />
Diesmal hat es funktioniert. KA warum es beim ersten Mal nicht funktioniert hat.</p>
<p>Aber danke für eure Antworten!</p>
<p>greets</p>
]]></description><link>https://www.c-plusplus.net/forum/post/385669</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385669</guid><dc:creator><![CDATA[Spritey]]></dc:creator><pubDate>Mon, 03 Nov 2003 13:32:09 GMT</pubDate></item><item><title><![CDATA[Reply to ODBC - 2 Tabellen on Mon, 03 Nov 2003 14:49:17 GMT]]></title><description><![CDATA[<p>Hmmm.<br />
Jetzt hab ich ein anderes Problem.<br />
Ist es möglich in eine CRecordView zwei verschiedené RecordSet's einzubinden die auf unterschiedlichen Positionen abgefragt werden ?<br />
Wenn Ich in einem RecordSet zwei Tabellen auswähle kann ich ja nicht verscheidene Stellen auslesen, oder ?</p>
<p>Thx.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/385731</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/385731</guid><dc:creator><![CDATA[Spritey]]></dc:creator><pubDate>Mon, 03 Nov 2003 14:49:17 GMT</pubDate></item></channel></rss>