<?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 Spatial SQLite database - SQL in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/spatial-sqlite-database-sql/m-p/875162#M6472</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a spatial SQLite database using ArcMap and I'm trying include a new point in my table (tbl_furos_coordenadas), by SQL, but I'm not having success with this... My table created below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE tbl_furos_coordenadas (&lt;BR /&gt; OBJECTID integer primary key autoincrement not null, &lt;BR /&gt; Shape POINT, &lt;BR /&gt; FURO_TX_NO text(254) check(&lt;BR /&gt; (typeof(FURO_TX_NO) = 'text' or typeof(FURO_TX_NO) = 'null') and not length(FURO_TX_NO) &amp;gt; 254), &lt;BR /&gt; FURO_VL_MC float64 check(&lt;BR /&gt; typeof(FURO_VL_MC) = 'real' or typeof(FURO_VL_MC) = 'null'), &lt;BR /&gt; FURO_VL_LA float64 check(&lt;BR /&gt; typeof(FURO_VL_LA) = 'real' or typeof(FURO_VL_LA) = 'null'), &lt;BR /&gt; FURO_VL_PR float64 check(&lt;BR /&gt; typeof(FURO_VL_PR) = 'real' or typeof(FURO_VL_PR) = 'null'), &lt;BR /&gt; X_SIRGAS float64 check(&lt;BR /&gt; typeof(X_SIRGAS) = 'real' or typeof(X_SIRGAS) = 'null'),&lt;BR /&gt; Y_SIRGAS float64 check(&lt;BR /&gt; typeof(Y_SIRGAS) = 'real' or typeof(Y_SIRGAS) = 'null'), &lt;BR /&gt; X_CGS float64 check(&lt;BR /&gt; typeof(X_CGS) = 'real' or typeof(X_CGS) = 'null'), &lt;BR /&gt; Y_CGS float64 check(&lt;BR /&gt; typeof(Y_CGS) = 'real' or typeof(Y_CGS) = 'null')&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm trying to use this SQL for include a new point:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO tbl_furos_coordenadas (FURO_TX_NO,Shape) &lt;BR /&gt;VALUES('GET-9999',Shape('POINT(-42,614064 -24,986632)',4674));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But the error displayed is: SQL Error [1]: [SQLITE_ERROR] SQL error or missing database (no such function: Shape)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2020 21:26:46 GMT</pubDate>
    <dc:creator>AlineMelo</dc:creator>
    <dc:date>2020-04-28T21:26:46Z</dc:date>
    <item>
      <title>Spatial SQLite database - SQL</title>
      <link>https://community.esri.com/t5/geodatabase-questions/spatial-sqlite-database-sql/m-p/875162#M6472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created a spatial SQLite database using ArcMap and I'm trying include a new point in my table (tbl_furos_coordenadas), by SQL, but I'm not having success with this... My table created below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE TABLE tbl_furos_coordenadas (&lt;BR /&gt; OBJECTID integer primary key autoincrement not null, &lt;BR /&gt; Shape POINT, &lt;BR /&gt; FURO_TX_NO text(254) check(&lt;BR /&gt; (typeof(FURO_TX_NO) = 'text' or typeof(FURO_TX_NO) = 'null') and not length(FURO_TX_NO) &amp;gt; 254), &lt;BR /&gt; FURO_VL_MC float64 check(&lt;BR /&gt; typeof(FURO_VL_MC) = 'real' or typeof(FURO_VL_MC) = 'null'), &lt;BR /&gt; FURO_VL_LA float64 check(&lt;BR /&gt; typeof(FURO_VL_LA) = 'real' or typeof(FURO_VL_LA) = 'null'), &lt;BR /&gt; FURO_VL_PR float64 check(&lt;BR /&gt; typeof(FURO_VL_PR) = 'real' or typeof(FURO_VL_PR) = 'null'), &lt;BR /&gt; X_SIRGAS float64 check(&lt;BR /&gt; typeof(X_SIRGAS) = 'real' or typeof(X_SIRGAS) = 'null'),&lt;BR /&gt; Y_SIRGAS float64 check(&lt;BR /&gt; typeof(Y_SIRGAS) = 'real' or typeof(Y_SIRGAS) = 'null'), &lt;BR /&gt; X_CGS float64 check(&lt;BR /&gt; typeof(X_CGS) = 'real' or typeof(X_CGS) = 'null'), &lt;BR /&gt; Y_CGS float64 check(&lt;BR /&gt; typeof(Y_CGS) = 'real' or typeof(Y_CGS) = 'null')&lt;BR /&gt;);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I'm trying to use this SQL for include a new point:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO tbl_furos_coordenadas (FURO_TX_NO,Shape) &lt;BR /&gt;VALUES('GET-9999',Shape('POINT(-42,614064 -24,986632)',4674));&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But the error displayed is: SQL Error [1]: [SQLITE_ERROR] SQL error or missing database (no such function: Shape)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2020 21:26:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/spatial-sqlite-database-sql/m-p/875162#M6472</guid>
      <dc:creator>AlineMelo</dc:creator>
      <dc:date>2020-04-28T21:26:46Z</dc:date>
    </item>
  </channel>
</rss>

