<?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: .geodatabase cannot save in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683220#M4753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello, everybody! I really don't how to do...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the License only for developer, my *.geodatabase is local created by ArcGIS destop.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to save a new feature to my database, but I really don't know how to do?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; FeatureTable pFeatureTable = photoLayer.getFeatureTable();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GeodatabaseFeatureTable pGdbFeatureTable = (GeodatabaseFeatureTable) pFeatureTable;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; // Create a feature with these attributes at the given point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GeodatabaseFeature gdbFeature = new GeodatabaseFeature(attr, pGeom, pGdbFeatureTable);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; // Add the feature into the geodatabase table returning the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; // new feature ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; long fid = pGdbFeatureTable.addFeature(gdbFeature);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; java.lang.RuntimeException: The service does not have "create" capability.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.nativeAddFeature(Native Method)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.addFeature(Unknown Source)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 May 2014 23:13:31 GMT</pubDate>
    <dc:creator>EdwardLin</dc:creator>
    <dc:date>2014-05-03T23:13:31Z</dc:date>
    <item>
      <title>.geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683212#M4745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I use the .geodatabase in android, when I create new feature , but cannot save? Is same body help?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2014 05:19:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683212#M4745</guid>
      <dc:creator>EdwardLin</dc:creator>
      <dc:date>2014-04-22T05:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683213#M4746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Bluehy135,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please, Can you describe your scenario?&amp;nbsp; Could you share some of the code and any error messages?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you following a workflow like the one described in the Edit Features Guide?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/android/guide/edit-features.htm"&gt;https://developers.arcgis.com/android/guide/edit-features.htm&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2014 15:05:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683213#M4746</guid>
      <dc:creator>RobertBurke</dc:creator>
      <dc:date>2014-04-22T15:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683214#M4747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;my problem is the feature can save? the fid return -1, I want know why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; FeatureTable pFeatureTable = photoLayer.getFeatureTable();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; GeodatabaseFeatureTable pGdbFeatureTable = (GeodatabaseFeatureTable) pFeatureTable;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // Create a feature with these attributes at the given point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; GeodatabaseFeature gdbFeature = new GeodatabaseFeature(attr, pGeom, pGdbFeatureTable);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // Add the feature into the geodatabase table returning the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; // new feature ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; long fid = pGdbFeatureTable.addFeature(gdbFeature);// return -1 ????&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2014 23:56:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683214#M4747</guid>
      <dc:creator>EdwardLin</dc:creator>
      <dc:date>2014-04-22T23:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683215#M4748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please could you share the code showing how attr and pGeom are created?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;GeodatabaseFeature(attr, pGeom, pGdbFeatureTable);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also to the TableException (described at the URL below)&amp;nbsp; contain any error description?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/android/api-reference/reference/com/esri/core/geodatabase/GeodatabaseFeature.html"&gt;https://developers.arcgis.com/android/api-reference/reference/com/esri/core/geodatabase/GeodatabaseFeature.html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2014 15:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683215#M4748</guid>
      <dc:creator>RobertBurke</dc:creator>
      <dc:date>2014-04-23T15:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683216#M4749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I know, I am not license my app at Stand level, so it's not work...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 23:50:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683216#M4749</guid>
      <dc:creator>EdwardLin</dc:creator>
      <dc:date>2014-04-29T23:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683217#M4750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I also had a problem updating geodatabase in version 10.2.2 - because my geodatabase was created from the ArcMap (i have a complete offline applciation that i cannot connect to a service) - desktop pattern.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As i understood - this was "by design" like that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is that changed in the new version 10.2.3?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 12:22:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683217#M4750</guid>
      <dc:creator>teamIgal</dc:creator>
      <dc:date>2014-04-30T12:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683218#M4751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I know, I am not license my app at Stand level, so it's not work...&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use the entire API in developer mode.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I also had a problem updating geodatabase in version 10.2.2 - because my geodatabase was created from the ArcMap&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you specifically create a Runtime Geodatabase?&amp;nbsp; You have to enable ArcGIS Runtime Tools in ArcMap to share as runtime content.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 22:44:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683218#M4751</guid>
      <dc:creator>DanO_Neill</dc:creator>
      <dc:date>2014-04-30T22:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683219#M4752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt; &lt;BR /&gt;Did you specifically create a Runtime Geodatabase?&amp;nbsp; You have to enable ArcGIS Runtime Tools in ArcMap to share as runtime content.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes i created the geodatabase correctly. I am using the Arcgis Runtime for Android version 10.0 - and everything works there correctly.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But in version 10.2 (i tryed both with developer license and the full license) i can only open the geodatabase for read-only, and i cant add new features or update the features in the feature tables that i created from that geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I saw in the SDK that this desktop pattern is &lt;/SPAN&gt;&lt;STRONG&gt;best for read only use&lt;/STRONG&gt;&lt;SPAN&gt; but as i see this it works &lt;/SPAN&gt;&lt;STRONG&gt;only for read only use&lt;/STRONG&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 04:45:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683219#M4752</guid>
      <dc:creator>teamIgal</dc:creator>
      <dc:date>2014-05-01T04:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683220#M4753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello, everybody! I really don't how to do...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have the License only for developer, my *.geodatabase is local created by ArcGIS destop.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to save a new feature to my database, but I really don't know how to do?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; FeatureTable pFeatureTable = photoLayer.getFeatureTable();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GeodatabaseFeatureTable pGdbFeatureTable = (GeodatabaseFeatureTable) pFeatureTable;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; // Create a feature with these attributes at the given point&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; GeodatabaseFeature gdbFeature = new GeodatabaseFeature(attr, pGeom, pGdbFeatureTable);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; // Add the feature into the geodatabase table returning the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; // new feature ID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; long fid = pGdbFeatureTable.addFeature(gdbFeature);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; java.lang.RuntimeException: The service does not have "create" capability.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.nativeAddFeature(Native Method)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.addFeature(Unknown Source)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 May 2014 23:13:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683220#M4753</guid>
      <dc:creator>EdwardLin</dc:creator>
      <dc:date>2014-05-03T23:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683221#M4754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello, everybody! I really don't how to do...&lt;BR /&gt;I have the License only for developer, my *.geodatabase is local created by ArcGIS destop.&lt;BR /&gt;I want to save a new feature to my database, but I really don't know how to do?&lt;BR /&gt;&lt;BR /&gt; FeatureTable pFeatureTable = photoLayer.getFeatureTable();&lt;BR /&gt; GeodatabaseFeatureTable pGdbFeatureTable = (GeodatabaseFeatureTable) pFeatureTable;&lt;BR /&gt;&lt;BR /&gt; // Create a feature with these attributes at the given point&lt;BR /&gt; GeodatabaseFeature gdbFeature = new GeodatabaseFeature(attr, pGeom, pGdbFeatureTable);&lt;BR /&gt;&lt;BR /&gt; // Add the feature into the geodatabase table returning the&lt;BR /&gt; // new feature ID&lt;BR /&gt; long fid = pGdbFeatureTable.addFeature(gdbFeature);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; E/AndroidRuntime(10788):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; java.lang.RuntimeException: The service does not have "create" capability.&lt;BR /&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.nativeAddFeature(Native Method)&lt;BR /&gt; E/AndroidRuntime(10788):&amp;nbsp; at com.esri.core.geodatabase.GeodatabaseFeatureTable.addFeature(Unknown Source)&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is excatly the problem that i am facing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is working the same whether you have developer license or advanced license.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I think that the problem is the geodatabse - that was created in the ArcMap - and not via server.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 04:58:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683221#M4754</guid>
      <dc:creator>teamIgal</dc:creator>
      <dc:date>2014-05-05T04:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683222#M4755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Geodatabases ( .geodatabase files ) created from ArcMap cannot be edited and synced with a feature service. This capability is coming in a future release...hopefully the next one. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope this is helpful.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2014 13:47:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683222#M4755</guid>
      <dc:creator>EricBader</dc:creator>
      <dc:date>2014-05-05T13:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: .geodatabase cannot save</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683223#M4756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi everyone,&lt;BR /&gt;&lt;BR /&gt;Geodatabases ( .geodatabase files ) created from ArcMap cannot be edited and synced with a feature service. This capability is coming in a future release...hopefully the next one. &lt;BR /&gt;&lt;BR /&gt;I hope this is helpful.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is that mean that it cannot be edited locally as well? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This capabillaty was enable in the version 10.2, and then it was disabled in 10.2.2.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is version 10.2.3 also disable it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When does the next version ,that will enable it back, be released??&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 04:35:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/geodatabase-cannot-save/m-p/683223#M4756</guid>
      <dc:creator>teamIgal</dc:creator>
      <dc:date>2014-05-07T04:35:15Z</dc:date>
    </item>
  </channel>
</rss>

