This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ESRI.ArcGIS.DataManagementTools; | |
using ESRI.ArcGIS.esriSystem; | |
using ESRI.ArcGIS.Geodatabase; | |
using ESRI.ArcGIS.Geoprocessor; | |
using Neoenergia.ModuloProjetos.Util.Test; | |
using System; | |
using System.Runtime.InteropServices; | |
namespace GeoprocessorExemplo | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare | |
stringa varchar2(100); | |
cursor cur is | |
select * | |
from user_objects; | |
begin | |
for c in cur loop | |
begin |