<?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>topic Re: How to use ArcGIS Pro with SQLite in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242533#M10649</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is true that sqlite is still not supported for interactive editing as at Pro 2.3 and it is also not supported for editing in ArcMap.&lt;/P&gt;&lt;P&gt;But don't let that put you off using sqlite and the spatial extensions combined with Esri tools. It is still very useful for lots of purposes. It can fill in holes in ArcTools and for some operations it is 100 times faster.&lt;/P&gt;&lt;P&gt;The way I use it is to keep the spatial tables (ie featureclasses) and aspatial tables (ie tables) in sqlite (with the spatial extension DLL built into Arc*) and run python scripts with SQL commands. You can do any (non interactive) editing with that method!&lt;/P&gt;&lt;P&gt;After a few seconds of processing I then copy the spatial tables back into a filegeodatabase if I need to use other tools that do not support sqlite. I can see the featureclasses and tables in ArcCatalog and they can usually be a read-only source of data.&lt;/P&gt;&lt;P&gt;The great benefit to exporting data as a sqlite database is that I can send it to a user without a GIS installation and they can easily read it with an ODBC driver.It is a single file database excellent for exchange. There are no size limits. Some of my databases are 6GB. Because they have good indexing they are way faster than Access ever was.&amp;nbsp; Instead of an awful CSV file you get a proper database table with a full schema, metadata, and the flexibility of a relational database.&lt;/P&gt;&lt;P&gt;Need the equivalent of Access?There are several open source equivalents available&lt;/P&gt;&lt;P&gt;I purchased sqlitepro&amp;nbsp; &lt;A href="http://www.sqliteexpert.com" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.sqliteexpert.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;to test out my sql expressions.&lt;/P&gt;&lt;P&gt;What sort of tools? Consider if you have a many to one relate between owners and parcels. You would like a point layer of owners 'geocoded' by using the parcel&amp;nbsp; centroid. The obvious solution is to add a spatial column to Owners and populate it with parcel centroids from a relate to the parcels. This typically takes 2 minutes for 5 million records. This is not easy with ArcTools. MakeQueryLayer is not available for filegeodatabases, MakeQueryTable&amp;nbsp; is slow, does not scale well enough to complete. The only workaround I have found is to create a new empty Owner featureclass, copy all the data across with a cursor, then create a dictionary of geometry objects from the parcels and update the Owner featureclass. This takes some advanced python skills so I may as well write a SQL expression in spatialite (sqlite + mod spatialite)&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;sql &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UPDATE {0}
    SET shape = (SELECT shape
        FROM parcel.Parcel_Label B
        WHERE B.par_id = {0}.first_par_id)
        "&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;format&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;new_title&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;time 0:00:17.682000&lt;BR /&gt;count 2149376&lt;/P&gt;&lt;P&gt;This was as expected because it was a port from ARC/INFO and AML which took a similar time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 12:08:48 GMT</pubDate>
    <dc:creator>KimOllivier</dc:creator>
    <dc:date>2021-12-11T12:08:48Z</dc:date>
    <item>
      <title>How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242513#M10629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as I can see there is no direct support for SQLLite in Pro. Is that a planned feature ? Can I access SQLite through phyton and import data as layers that way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 10:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242513#M10629</guid>
      <dc:creator>LarsLarsen</dc:creator>
      <dc:date>2015-01-30T10:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242514#M10630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think Esri would agree, i.e., SQLite isn't currently fully supported in ArcGIS Pro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although "seeing" SQLite databases isn't possible through the Project pane/window, you can load SQLite databases using the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/make-feature-layer.htm"&gt;Make Feature Layer &lt;/A&gt;tool either through the GUI or ArcPy.&amp;nbsp; At least during beta testing, Spatialite-based spatial data wouldn't load because the correct DLLs weren't packaged with the installer, not sure if that changed.&amp;nbsp; I have successfully loading ST_Geometry and GeoPackage spatial data into ArcGIS Pro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jan 2015 18:07:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242514#M10630</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-01-30T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242515#M10631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just tested the Make Feature Layer Tool on version 1.0 and it does not see sqlite as a valid data source in the GUI. I could also not make it work using scripting directly, but that could be for other reasons as the error message is quite generic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Strange though, because looking in the Pro folder structure both sqlite3 and ST_Geometry dlls are distributed with Pro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 08:25:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242515#M10631</guid>
      <dc:creator>LarsLarsen</dc:creator>
      <dc:date>2015-02-02T08:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242516#M10632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to load spatial data or just a table?&amp;nbsp; Was the SQLite database created by ArcGIS Desktop or some other application?&amp;nbsp; If the latter, try making a SQLite database from ArcGIS Desktop and putting some data in it, and then see if ArcGIS Pro sees that database, especially if working with spatial data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:32:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242516#M10632</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-02-02T14:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242517#M10633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Josh, I am trying both simple table and spatial data. Also tried to start of with a SQLite created by ArcGIS. It doesn't make any difference. In the GUI neither the extension .sqlite or .gpkg is recognized in pro, but works fine in ArcMAp 10.3 with the same tools.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 14:39:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242517#M10633</guid>
      <dc:creator>LarsLarsen</dc:creator>
      <dc:date>2015-02-02T14:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242518#M10634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tool won't "see" the SQLite database for the same reason the Project pane doesn't; however, the tool works with them.&amp;nbsp; Don't rely on the tools Browse button, fully specify the path to the table in the SQLite database in the Input Features text box.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2015 15:35:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242518#M10634</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-02-02T15:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242519#M10635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried almost every combination for entering the SQLite path and feature class as input argument to the tool. Both in GUI and from Py scripting. The py script tests OK in ArcMap but not in PRO. PRO will give me and 'unsupported or does not exist' error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Josh, did you succeed with this method in the release version of PRO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 12:41:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242519#M10635</guid>
      <dc:creator>LarsLarsen</dc:creator>
      <dc:date>2015-02-05T12:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242520#M10636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;As far as I know&lt;/STRONG&gt;, the below workspaces are not yet supported with ArcGIS Pro:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Enterprise Databases (Netezza, Teradata, &lt;STRONG&gt;SQLite&lt;/STRONG&gt;) &lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;SQLite GDB&lt;/STRONG&gt; (only supported as part of map packages and offline editing) &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Presently supported Workspaces should be --&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;File Geodatabase &lt;/LI&gt;&lt;LI&gt;Compressed File Geodatabases&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;Feature Service Layers&amp;nbsp; &lt;/LI&gt;&lt;LI&gt;Enterprise Geodatabases (Oracle, SQL Server, PostgreSQL, DB2) &lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Feb 2015 13:09:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242520#M10636</guid>
      <dc:creator>AsrujitSengupta</dc:creator>
      <dc:date>2015-02-05T13:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242521#M10637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using ArcGIS Pro 1.0.0.&amp;nbsp; Yes, it works, I tested it before posting the other day.&amp;nbsp; I just tested it again, and it worked without any issues:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.MakeFeatureLayer_management(r"D:\tmp\test.sqlite\webMerc1","webMerc")
&amp;lt;Result 'webMerc'&amp;gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is helpful if you can post specific code and error messages, especially since it keeps not working for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure what is different between our machines.&amp;nbsp; I recently re-imaged my machine using Windows 7 64-bit Enterprise Edition.&amp;nbsp; I installed ArcGIS 10.3 before I got around to putting ArcGIS Pro on the machine, but the installations &lt;SPAN style="text-decoration: underline;"&gt;should&lt;/SPAN&gt; be compartmentalized from each other.&amp;nbsp; Anyhow, I was loading SQLite databases into Pro with the beta versions and pre-releases before I re-imaged my machine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried creating a layer file in ArcGIS Desktop that points to a SQLite data source and then load that layer file into ArcGIS Pro? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As has been pointed out, SQLite isn't officially supported yet, so the best approach in the interim might be to find an alternate data store.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 12:08:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242521#M10637</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T12:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242522#M10638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sqlite, SpatiaLite and GeoPackages are not supported in Pro 1.0. They didn't make the cut. We are trying to get them into Pro 1.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lance Shipman&lt;/P&gt;&lt;P&gt;Geodata Product Engineer, File Geodatabase, Sqlite, Shapefile&lt;/P&gt;&lt;P&gt;Esri, Redlands, California&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 20:37:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242522#M10638</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2015-02-12T20:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242523#M10639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any update on this? I would like to open a sqlite geodatabase (a ".geodatabase" file) in ArcMap or ArcGIS Pro. Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 18:42:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242523#M10639</guid>
      <dc:creator>BradleyAndrick3</dc:creator>
      <dc:date>2017-08-30T18:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242524#M10640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Sqlite, SpatiaLite and GeoPackages are supported in Pro. Mobile Geodatabases (.geodatabase) support is being considered for a later release, but not in the Pro 2.1 currently under development.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Lance&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 18:56:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242524#M10640</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2017-08-30T18:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242525#M10641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think mobile geodatabases (.geodatabase) are great, SQLite meets geodatabase.&amp;nbsp; Does Esri have plans to support native access within the desktop clients instead of having to convert back and forth between file geodatabases?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2017 19:52:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242525#M10641</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-08-30T19:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242526#M10642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Confirmed. I have successfully created both a Spatialite and GeoPackage database. However, I cannot edit the data...getting a 'not registered in the Database' error. I try to register the data and that also errors out. Is it possible to edit SQLite databases in Pro, and if so how does one do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:27:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242526#M10642</guid>
      <dc:creator>MalcolmMeyer</dc:creator>
      <dc:date>2017-12-13T18:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242527#M10643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Editing SQLite data is not currently supported in ArcMap or Pro. We are looking at it for a later (post 2.1) release.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:31:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242527#M10643</guid>
      <dc:creator>LanceShipman</dc:creator>
      <dc:date>2017-12-13T18:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242528#M10644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great. It would be helpful to have that clarified either here -&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/help/projects/supported-data-types-and-items.htm#ESRI_SECTION1_A1C9D114E6EC426C9ABA37FA6B02FD37" title="http://pro.arcgis.com/en/pro-app/help/projects/supported-data-types-and-items.htm#ESRI_SECTION1_A1C9D114E6EC426C9ABA37FA6B02FD37"&gt;Supported data types and items—ArcGIS Pro | ArcGIS Desktop&lt;/A&gt;&amp;nbsp; or here -&amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/help/data/databases/work-with-sqlite-databases-in-arcgis-pro.htm" title="http://pro.arcgis.com/en/pro-app/help/data/databases/work-with-sqlite-databases-in-arcgis-pro.htm"&gt;Work with SQLite databases in ArcGIS Pro—Help | ArcGIS Desktop&lt;/A&gt;, would have saved me asking in this forum.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:38:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242528#M10644</guid>
      <dc:creator>MalcolmMeyer</dc:creator>
      <dc:date>2017-12-13T18:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242529#M10645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still doesn't look like SQLite is editable in Pro 2.3. Any news/speculation about future releases?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 15:52:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242529#M10645</guid>
      <dc:creator>AZendel</dc:creator>
      <dc:date>2019-04-30T15:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242530#M10646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there's going to be any rush for sqlite support anytime soon. Many organizations are blocking it from the network, too many security holes.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cvedetails.com/vendor/9237/Sqlite.html"&gt;https://www.cvedetails.com/vendor/9237/Sqlite.html&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 17:48:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242530#M10646</guid>
      <dc:creator>ThomasColson</dc:creator>
      <dc:date>2019-04-30T17:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242531#M10647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let's not advertise then that GeoPackage is built on top of SQLite. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In defense of SQLite, it isn't any more prone to issues than most software, and the group behind SQLite does address vulnerabilities fairly quickly.&amp;nbsp; If having CVE entries was sufficient to block software from the network, I am not sure how many applications would remain on the network.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 19:26:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242531#M10647</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-04-30T19:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use ArcGIS Pro with SQLite</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242532#M10648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There was something specific about one of the entries, and how it was fixed (or not), that put it in "jail".&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Apr 2019 20:29:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/how-to-use-arcgis-pro-with-sqlite/m-p/242532#M10648</guid>
      <dc:creator>ThomasColson</dc:creator>
      <dc:date>2019-04-30T20:29:02Z</dc:date>
    </item>
  </channel>
</rss>

