菜鸟教程小白 发表于 2022-12-13 11:34:16

ios - 如何检查特定版本的 SQLite 支持哪些功能?


                                            <p><p>我想确保 iOS 4.0 附带的 SQLite 库支持 <a href="http://www.sqlite.org/foreignkeys.html" rel="noreferrer noopener nofollow">foreign key constraints</a> .官方文档声明:</p>

<blockquote>
<p>In order to use foreign key constraints in SQLite, the library must be compiled with neither SQLITE_OMIT_FOREIGN_KEY or SQLITE_OMIT_TRIGGER defined.</p>
</blockquote>

<p>如何在 C 中以编程方式或使用 <code>sqlite3</code> CLI 工具检查它?</p>

<p>提前致谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>文档说:</p>

<pre><code>sqlite&gt; PRAGMA foreign_keys;
0
sqlite&gt; PRAGMA foreign_keys = ON;
sqlite&gt; PRAGMA foreign_keys;
1
sqlite&gt; PRAGMA foreign_keys = OFF;
sqlite&gt; PRAGMA foreign_keys;
0
</code></pre>

<blockquote>
<p>Tip: If the command &#34;PRAGMA foreign_keys&#34; returns no data instead of a
single row containing &#34;0&#34; or &#34;1&#34;, then the version of SQLite you are
using does not support foreign keys (either because it is older than
3.6.19 or because it was compiled with SQLITE_OMIT_FOREIGN_KEY or SQLITE_OMIT_TRIGGER defined).</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何检查特定版本的 SQLite 支持哪些功能?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9229180/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9229180/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何检查特定版本的 SQLite 支持哪些功能?