<?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[IBTable1-&amp;gt;FilterOptions ?? hilfe]]></title><description><![CDATA[<p>hallo,</p>
<p>Also ich verstehen da etwas nicht mit der Eigenschaft FilterOptions der<br />
TIBTable-Komponente.<br />
Ich benutze eine firebird datenbank die auch funktioniert und habe über<br />
IBTable1-&gt;Filter den Inhalt der Tabelle einsckränken können. Jetzt will ich ,wie ich in der hilfe gelesen habe über FilterOptions den Filter von Groß-/Kleinschreibung unabhängig machen.<br />
also hab ich zuerst versucht</p>
<pre><code>IBTable1-&gt;Filteroptions &lt;&lt; foCaseInsensitive;
</code></pre>
<p>das hatte keinen Effekt.(hat nicht Groß-/Kleinschreibung ignoriert)<br />
dann</p>
<pre><code>TFilterOptions filter1
filter1 &lt;&lt; foCaseinsensitive;
IBTable1-&gt;Filteroptions = filter1;
</code></pre>
<p>und</p>
<pre><code>IBTable1-&gt;FilterOptions = IBTAble1-&gt;FilterOptions &lt;&lt; foCaseSensitive;
</code></pre>
<p>brachten beide zur laufzeit die fehlermeldung: &quot;nicht unterstütztes merkmal&quot;<br />
was hab ich nur falsch gemacht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /><br />
das kann doch nicht so schwer sein?</p>
<p>kann das an firebird liegen? eigentlich nicht,oder? das mit den filteroptions wird doch von c++ builder übernommen. Oder habe ich das alles komplett falsch verstanden. Würde mich nicht wundern.</p>
<p>naja helft mir bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
mfg<br />
ricos</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/119906/ibtable1-gt-filteroptions-hilfe</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Jul 2026 04:51:04 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/119906.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 06 Sep 2005 20:32:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to IBTable1-&amp;gt;FilterOptions ?? hilfe on Tue, 06 Sep 2005 20:32:21 GMT]]></title><description><![CDATA[<p>hallo,</p>
<p>Also ich verstehen da etwas nicht mit der Eigenschaft FilterOptions der<br />
TIBTable-Komponente.<br />
Ich benutze eine firebird datenbank die auch funktioniert und habe über<br />
IBTable1-&gt;Filter den Inhalt der Tabelle einsckränken können. Jetzt will ich ,wie ich in der hilfe gelesen habe über FilterOptions den Filter von Groß-/Kleinschreibung unabhängig machen.<br />
also hab ich zuerst versucht</p>
<pre><code>IBTable1-&gt;Filteroptions &lt;&lt; foCaseInsensitive;
</code></pre>
<p>das hatte keinen Effekt.(hat nicht Groß-/Kleinschreibung ignoriert)<br />
dann</p>
<pre><code>TFilterOptions filter1
filter1 &lt;&lt; foCaseinsensitive;
IBTable1-&gt;Filteroptions = filter1;
</code></pre>
<p>und</p>
<pre><code>IBTable1-&gt;FilterOptions = IBTAble1-&gt;FilterOptions &lt;&lt; foCaseSensitive;
</code></pre>
<p>brachten beide zur laufzeit die fehlermeldung: &quot;nicht unterstütztes merkmal&quot;<br />
was hab ich nur falsch gemacht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /><br />
das kann doch nicht so schwer sein?</p>
<p>kann das an firebird liegen? eigentlich nicht,oder? das mit den filteroptions wird doch von c++ builder übernommen. Oder habe ich das alles komplett falsch verstanden. Würde mich nicht wundern.</p>
<p>naja helft mir bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /><br />
mfg<br />
ricos</p>
]]></description><link>https://www.c-plusplus.net/forum/post/866591</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/866591</guid><dc:creator><![CDATA[ricos]]></dc:creator><pubDate>Tue, 06 Sep 2005 20:32:21 GMT</pubDate></item><item><title><![CDATA[Reply to IBTable1-&amp;gt;FilterOptions ?? hilfe on Wed, 07 Sep 2005 08:13:55 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>Hast du auch mal das hier probiert.</p>
<pre><code class="language-cpp">IBTable1-&gt;FilterOptions = IBTAble1-&gt;FilterOptions &lt;&lt; foCaseInsensitive;
</code></pre>
<p>oder waren das da oben nur Schreibfehler?<br />
Denn &quot;foCaseinsensitive&quot; und &quot;foCaseSensitive&quot; gibt es nicht. Es kann natürlich auch sein, dass Firebird das nicht unterstützt.<br />
Ich würde an deiner Stelle sowieso auf TIBTable verzichten und statt dessen TIBDataset oder TIBQuery nehmen. Da kannst du die Filterung schön über SQL-Queries erledigen (SELECT .. WHERE ...). TIBTable ist ja sowieso nur aus Kompatibilitätsgünden noch mit drin.</p>
<p>Ciao</p>
]]></description><link>https://www.c-plusplus.net/forum/post/866768</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/866768</guid><dc:creator><![CDATA[Braunstein]]></dc:creator><pubDate>Wed, 07 Sep 2005 08:13:55 GMT</pubDate></item><item><title><![CDATA[Reply to IBTable1-&amp;gt;FilterOptions ?? hilfe on Wed, 07 Sep 2005 12:36:03 GMT]]></title><description><![CDATA[<p>ja im quelltext hatte ich es richtig, klappt trotzdem nicht.<br />
Falls es jemanden interessiert, ich hab das ganze jetzt mit CONTAINING gelöst</p>
<blockquote>
<p>WHERE LNAME CONTAINING &quot;smith&quot;</p>
<p>CONTAINING is case-insensitive and<br />
finds partial matches.</p>
<p>Like:</p>
<p>Smith<br />
SMITH<br />
Wordsmith</p>
<p>CAUTION: Containing will not used indeces. For best performance, make sure to limit the query with other<br />
conditions if you need to run over a large table.</p>
</blockquote>
<p>kann mir aber jemand die warnung da erklären. warum schränkt es die performance ein, wenn die Indexe nicht benutzt werden? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/867002</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/867002</guid><dc:creator><![CDATA[ricos]]></dc:creator><pubDate>Wed, 07 Sep 2005 12:36:03 GMT</pubDate></item><item><title><![CDATA[Reply to IBTable1-&amp;gt;FilterOptions ?? hilfe on Fri, 04 Nov 2005 21:08:44 GMT]]></title><description><![CDATA[<p>weil die indexe erstellt werden an Schlüsselfeldern um die Datensatzsuche schneller zu machen bzw. jede operation in der DB. &lt;- so ungefähr also wenn du 100k Datensätze hasst kannst halt ma erst zur kaffeetasse greifen bevor wat passiert <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/908490</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/908490</guid><dc:creator><![CDATA[Madde]]></dc:creator><pubDate>Fri, 04 Nov 2005 21:08:44 GMT</pubDate></item></channel></rss>