<?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[Frage zu SQL-Query Syntax]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>kann mir jemand erklären, warum ich bei der folgenden Query-Syntax den Fehler:</p>
<p><strong>Unzulässige Zeigeraddition</strong> bekomme ?</p>
<pre><code class="language-cpp">Query1-&gt;SQL-&gt;Add(&quot; WHERE index = '&quot; + v_index + &quot;' &quot;);
</code></pre>
<p>Ich verzweifle langsam.</p>
<p>Danke für Eure Hilfe.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/127833/frage-zu-sql-query-syntax</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Jul 2026 02:07:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/127833.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 27 Nov 2005 20:52:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Frage zu SQL-Query Syntax on Sun, 27 Nov 2005 20:52:23 GMT]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>kann mir jemand erklären, warum ich bei der folgenden Query-Syntax den Fehler:</p>
<p><strong>Unzulässige Zeigeraddition</strong> bekomme ?</p>
<pre><code class="language-cpp">Query1-&gt;SQL-&gt;Add(&quot; WHERE index = '&quot; + v_index + &quot;' &quot;);
</code></pre>
<p>Ich verzweifle langsam.</p>
<p>Danke für Eure Hilfe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928635</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928635</guid><dc:creator><![CDATA[chloe]]></dc:creator><pubDate>Sun, 27 Nov 2005 20:52:23 GMT</pubDate></item><item><title><![CDATA[Reply to Frage zu SQL-Query Syntax on Sun, 27 Nov 2005 21:12:42 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>wie der Name schon sagt</p>
<p>Unzulässige Zeiger<strong>addition</strong></p>
<p>man kann char* nicht einfach addieren<br />
(entweder strcpy/strncpy oder AnsiString)</p>
<p>Mfg<br />
Klaus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928650</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928650</guid><dc:creator><![CDATA[KlausB]]></dc:creator><pubDate>Sun, 27 Nov 2005 21:12:42 GMT</pubDate></item><item><title><![CDATA[Reply to Frage zu SQL-Query Syntax on Mon, 28 Nov 2005 03:07:02 GMT]]></title><description><![CDATA[<p>Hallo chloe,<br />
ich vermute mal das es sich bei <strong>v_index</strong> um einen integer handelt.<br />
Versuche es mal mit</p>
<pre><code>Query1-&gt;SQL-&gt;Add(&quot; WHERE index = '&quot; + (String)v_index + &quot;' &quot;);
</code></pre>
<p>gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928727</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928727</guid><dc:creator><![CDATA[torsten_156]]></dc:creator><pubDate>Mon, 28 Nov 2005 03:07:02 GMT</pubDate></item><item><title><![CDATA[Reply to Frage zu SQL-Query Syntax on Mon, 28 Nov 2005 06:46:30 GMT]]></title><description><![CDATA[<p>Wobei man sich die Arbeit noch erleichtern kann, indem man QuotedStr oder AnsiQuotedStr verwendet. Das liefert dann gleich einen String in halben Anführungszeichen.<br />
Falls das Datenbankfeld index ein numerisches Feld ist, gehören da aber auch gar keine Anführungszeichen hin.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/928739</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/928739</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Mon, 28 Nov 2005 06:46:30 GMT</pubDate></item></channel></rss>