<?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 long will arcgisscripting module be around? in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699254#M23167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My 9.2 code still works in 10.1. The .create(9.3) makes the new functionalities in 9.3 available to the script. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcgisscripting
gp = arcgisscripting.create()

rows = gp.SearchCursor(r"C:\data\fgdb.gdb\lines")

row = rows.next()

while row:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print row.getValue("MYFIELD")
&amp;nbsp;&amp;nbsp;&amp;nbsp; row = rows.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
del row
del rows&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 05:25:42 GMT</pubDate>
    <dc:creator>NobbirAhmed</dc:creator>
    <dc:date>2021-12-12T05:25:42Z</dc:date>
    <item>
      <title>How long will arcgisscripting module be around?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699250#M23163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've only modified a small percentage of scripts to use arcpy.&amp;nbsp; At what version will arcgisscripting go away and arcpy be the only option?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2012 20:17:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699250#M23163</guid>
      <dc:creator>RandyKreuziger</dc:creator>
      <dc:date>2012-06-22T20:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: How long will arcgisscripting module be around?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699251#M23164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It is not how long arcgisscripting will be around - it is how soon you will be using the new functionalities of arcpy package &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example, in 10.1, there is a data access module in the ArcPy site package. This module makes data processing way faster than using the existing cursors.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2012 02:09:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699251#M23164</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2012-06-23T02:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: How long will arcgisscripting module be around?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699252#M23165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;For a very, very long time. Arcpy is built on it, and we don't really want to ever break backward compatibility with your scripts.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Jun 2012 21:27:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699252#M23165</guid>
      <dc:creator>JasonScheirer</dc:creator>
      <dc:date>2012-06-23T21:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: How long will arcgisscripting module be around?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699253#M23166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just want to add, if you want your scripts to be fully forward compatible, say, so it will work in 9.3 and 10.0 and ..., you need to specify a version of arcgisscripting. Esri has kindly provided a way to make sure the arcgisscripting object model for previous versions of ArcGIS is still available. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;gp&amp;nbsp; = arcgisscripting.create(9.3)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The module it self hasn't changed that much - mostly changes to the list functions and cursors, but enough to break your scripts in future versions if you forget to specify the version you want.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jun 2012 14:12:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699253#M23166</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-06-24T14:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: How long will arcgisscripting module be around?</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699254#M23167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;My 9.2 code still works in 10.1. The .create(9.3) makes the new functionalities in 9.3 available to the script. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcgisscripting
gp = arcgisscripting.create()

rows = gp.SearchCursor(r"C:\data\fgdb.gdb\lines")

row = rows.next()

while row:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print row.getValue("MYFIELD")
&amp;nbsp;&amp;nbsp;&amp;nbsp; row = rows.next()
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
del row
del rows&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 05:25:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/how-long-will-arcgisscripting-module-be-around/m-p/699254#M23167</guid>
      <dc:creator>NobbirAhmed</dc:creator>
      <dc:date>2021-12-12T05:25:42Z</dc:date>
    </item>
  </channel>
</rss>

