<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: SQL Anywhere vs SQLite in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838677#M4869520</link>
    <description>&lt;P&gt;&lt;IMG src="http://images.mentalfloss.com/wp-content/uploads/2008/02/435_vennVodka.JPG" width="250" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2017 06:17:51 GMT</pubDate>
    <dc:creator>Breck_Carter</dc:creator>
    <dc:date>2017-07-14T06:17:51Z</dc:date>
    <item>
      <title>SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaq-p/13838666</link>
      <description>&lt;P&gt;Dear Experts,&lt;/P&gt;
&lt;P&gt;What are the advantages of using SQL Anywhere or Ultralite when compared to SQLite.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 04:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaq-p/13838666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-03T04:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838669#M4869512</link>
      <description>&lt;P&gt;SQL Anywhere is the DB server;&lt;BR /&gt;
Ultralite is the file-based DB (not server);&lt;BR /&gt;
Ultralite can be synchronized with other DB servers (see Mobilink);&lt;BR /&gt;
SQLite has a different purpose.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 08:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838669#M4869512</guid>
      <dc:creator>Vlad</dc:creator>
      <dc:date>2017-05-03T08:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838670#M4869513</link>
      <description>&lt;P&gt;Can you please explain a little. And what is the purpose of SQLite because I have read it is widely used as a DB for mobile applications.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 09:03:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838670#M4869513</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-03T09:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838671#M4869514</link>
      <description>&lt;P&gt;This is the biggest help that I can give you here for SQLite, because your question is not related to SAP products.&lt;BR /&gt;
Here is my advice: &lt;A href="https://www.sqlite.org/about.html"&gt;https://www.sqlite.org/about.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 09:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838671#M4869514</guid>
      <dc:creator>Vlad</dc:creator>
      <dc:date>2017-05-03T09:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838667#M4869510</link>
      <description>&lt;P&gt;Hi Suberta,&lt;/P&gt;
&lt;P&gt;As Vlad says, SQL Anywhere is a full client-server database intended for embedded and other resource-restricted environments. It is a lot more like PostgreSQL than like SQLite. SQL Anywhere can handle hundreds of concurrent database connections whereas SQLite cannot really handle more than a few. As the SQLite home page Vlad links to says: "Think of SQLite not as a replacement for Oracle but as a replacement for fopen()". So if you want a multi-user database system, SQL Anywhere is one and SQLite is not.&lt;/P&gt;
&lt;P&gt;UltraLite is a lot more like SQLite: both are libraries. But the big difference for most of our users is that UltraLite has synchronization built in, meaning that it has a network client that understands the SQL Anywhere MobiLink synchronization protocol, that it tracks changes in the database so they can be synchronized properly, and it cleans up those changes after a successful sync. For SQLite you would have to do that work yourself as a developer.&lt;/P&gt;
&lt;P&gt;Obviously those are very broad paragraphs and there is a lot more detail, but I hope they give you a starting point.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 10:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838667#M4869510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-04T10:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838668#M4869511</link>
      <description>&lt;P&gt;I have to (begrudgingly!) say, if half of what's said on &lt;B&gt;&lt;A href="https://www.sqlite.org/about.html"&gt;the SQLite about page&lt;/A&gt;&lt;/B&gt; is true then it is a fine product... many of the points made are &lt;B&gt;hot-button points&lt;/B&gt; with me, like "ACID after power loss" and "aircraft-grade testing" and "long-term support"... if SQL Anywhere becomes any more stealthy than it is now (and that trajectory seems clear), SQLite could be [cough] worth a look [choke].&lt;/P&gt;
&lt;P&gt;signed, Breck Forever The &lt;B&gt;SQL Anywhere Fanboy&lt;/B&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://dofollow.de/wp-content/uploads/2014/01/fanboy-meme.jpg" width="150" /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2017 05:22:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838668#M4869511</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2017-05-07T05:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838672#M4869515</link>
      <description>&lt;P&gt;Note however those SQL restrictions (additionally, I'm not sure about derived tables and OLAP support):&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlite.org/omitted.html"&gt;https://www.sqlite.org/omitted.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Volker belongs to that fan group, too.&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2017 07:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838672#M4869515</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2017-05-07T07:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838673#M4869516</link>
      <description>&lt;P&gt;As Tom implied, a more useful comparison might be SQLite versus UltraLite, with reference to &lt;B&gt;the "UltraLite" column in &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/826e818a6ce2101490c598d97c776016.html"&gt;this table&lt;/A&gt;&lt;/B&gt; as well as some of the links on the same page.&lt;/P&gt;</description>
      <pubDate>Sun, 07 May 2017 19:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838673#M4869516</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2017-05-07T19:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838674#M4869517</link>
      <description>&lt;P&gt;I can add that I like to read something interesting about in-memory and NoSql DBs, and I have read that people have taken the SQL engine+parser+whatever from SQLite and embed it into the own NoSql DB (no names, just a fact &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ). So the time will show, whether this was wise or not.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2017 04:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838674#M4869517</guid>
      <dc:creator>Vlad</dc:creator>
      <dc:date>2017-05-08T04:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838675#M4869518</link>
      <description>&lt;P&gt;compare anywhere agains postgres are very ignorant sing! but in any case &lt;/P&gt;
&lt;P&gt;the sync its not a advantage, due not sync with others db's.. umm ultralite its more complicated, the only advantage its the sync?.. not so used today in a widelly connected world...&lt;/P&gt;
&lt;P&gt;commercial or private. SQLite is the most widely deployed database in the world with more applications than we can count, including several high-profile projects.&lt;/P&gt;
&lt;P&gt;as sqlite page said!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2017 07:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838675#M4869518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-07-12T07:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838676#M4869519</link>
      <description>&lt;P&gt;I have heard you, and I partially agree: &lt;A href="https://www.sqlite.org/prosupport.html"&gt;https://www.sqlite.org/prosupport.html&lt;/A&gt;
Free software is good until you need help.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 03:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838676#M4869519</guid>
      <dc:creator>Vlad</dc:creator>
      <dc:date>2017-07-14T03:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Anywhere vs SQLite</title>
      <link>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838677#M4869520</link>
      <description>&lt;P&gt;&lt;IMG src="http://images.mentalfloss.com/wp-content/uploads/2008/02/435_vennVodka.JPG" width="250" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2017 06:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/sql-anywhere-vs-sqlite/qaa-p/13838677#M4869520</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2017-07-14T06:17:51Z</dc:date>
    </item>
  </channel>
</rss>

