<?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.Evaluate throw not implemented exception in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245633#M9238</link>
    <description>&lt;P&gt;Try using table search and QueryFilter instead.&lt;/P&gt;&lt;P&gt;using (var tbl = featLayer.GetTable()).....&lt;/P&gt;&lt;P&gt;var queryFilter = new QueryFilter&lt;BR /&gt;{...&lt;/P&gt;&lt;P&gt;using (var rowCursor = tbl.Search(queryFilter, false))....&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jan 2023 16:05:23 GMT</pubDate>
    <dc:creator>MatthewDriscoll</dc:creator>
    <dc:date>2023-01-05T16:05:23Z</dc:date>
    <item>
      <title>Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245626#M9237</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to execute a query on sql database.I am using ArcgisPro ,Net SDK. I followed the example on the documentation. However I got the method is not implemented exception.&lt;/P&gt;&lt;P&gt;Is this method really not implemented? or did I miss something.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks much for help.&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;using Geodatabase geodatabase = new Geodatabase(connectionProperties);&lt;BR /&gt;// Use the geodatabase&lt;BR /&gt;QueryDef getMapListQueryDef = new QueryDef&lt;BR /&gt;{&lt;BR /&gt;SubFields = "FMB4_LatestWellStatusPackageProduct.Name,T_Well.Latitude, T_Well.Longitude, T_WELL.EPSG_NO",&lt;BR /&gt;Tables = "FMB4_LatestWellStatusPackageProduct,T_Well ,FMB_Product ",&lt;BR /&gt;WhereClause = "FMB4_LatestWellStatusPackageProduct.Well_ID=T_Well.ID AND FMB4_LatestWellStatusPackageProduct.ProductID=FMB_Product.ID AND[FMB4_LatestWellStatusPackageProduct.R_WELL_STATUS_ID &amp;lt;&amp;gt; 210 AND FMB_Product.Name ='" + fmbProduct+"'",&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;using (RowCursor rowCursor = geodatabase.Evaluate(getMapListQueryDef, false))&lt;BR /&gt;{&lt;BR /&gt;while (rowCursor.MoveNext())&lt;BR /&gt;{&lt;BR /&gt;using (Row row = rowCursor.Current)&lt;BR /&gt;{&lt;BR /&gt;string wellname = Convert.ToString(row["Name"]);&lt;BR /&gt;codeList.Add(wellname);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 15:54:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245626#M9237</guid>
      <dc:creator>JinZ</dc:creator>
      <dc:date>2023-01-05T15:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245633#M9238</link>
      <description>&lt;P&gt;Try using table search and QueryFilter instead.&lt;/P&gt;&lt;P&gt;using (var tbl = featLayer.GetTable()).....&lt;/P&gt;&lt;P&gt;var queryFilter = new QueryFilter&lt;BR /&gt;{...&lt;/P&gt;&lt;P&gt;using (var rowCursor = tbl.Search(queryFilter, false))....&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 16:05:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245633#M9238</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2023-01-05T16:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245635#M9239</link>
      <description>&lt;P&gt;Is your WhereClause causing the problem? There's a bracket instead of a space&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;AND&lt;STRONG&gt;[&lt;/STRONG&gt;FMB4_LatestWellStatusPackageProduct.R_WELL_STATUS_ID&lt;/P&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 05 Jan 2023 16:04:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245635#M9239</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-01-05T16:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245637#M9240</link>
      <description>&lt;P&gt;The &lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic14110.html" target="_self"&gt;example&lt;/A&gt; uses a QueryDef&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 16:13:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245637#M9240</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2023-01-05T16:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245638#M9241</link>
      <description>&lt;P&gt;Understood.&amp;nbsp; I was having similar problems getting QueryDef and Evaluate to work and found using QueryFilter and Search was able to accomplish the same goal.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 16:17:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245638#M9241</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2023-01-05T16:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245668#M9243</link>
      <description>&lt;P&gt;The&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;table search and QueryFilter works for one table only? How to query more than one table?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:01:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245668#M9243</guid>
      <dc:creator>JinZ</dc:creator>
      <dc:date>2023-01-05T17:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245671#M9244</link>
      <description>&lt;P&gt;I would start by fixing the syntax error, as pointed out by&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/2839"&gt;@KenBuja&lt;/a&gt;. I suspect the problem here is a bad error message.&lt;/P&gt;&lt;P&gt;What kind of database is this?&lt;/P&gt;&lt;P&gt;--Rich&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:04:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245671#M9244</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2023-01-05T17:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245672#M9245</link>
      <description>&lt;P&gt;Thanks! that is a typo. I corrected it and tried again, still got the same exception message: The method or operation is not implemented.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:04:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245672#M9245</guid>
      <dc:creator>JinZ</dc:creator>
      <dc:date>2023-01-05T17:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245674#M9246</link>
      <description>&lt;P&gt;it's&amp;nbsp; a sql database. after fixed the syntax error, still got the same error.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245674#M9246</guid>
      <dc:creator>JinZ</dc:creator>
      <dc:date>2023-01-05T17:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Geodatabase.Evaluate throw not implemented exception</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245681#M9247</link>
      <description>&lt;P&gt;SQL Server, Oracle, Postgres, etc. are all sql databases. Which one are you using?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2023 17:16:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/geodatabase-evaluate-throw-not-implemented/m-p/1245681#M9247</guid>
      <dc:creator>RichRuh</dc:creator>
      <dc:date>2023-01-05T17:16:04Z</dc:date>
    </item>
  </channel>
</rss>

