IPropertySet接口

Members

 AllProperties MethodsDescription
Read-only propertyCountThe number of properties contained in the property set.包含属性个数
MethodGetAllPropertiesThe name and value of all the properties in the property set.
MethodGetPropertiesThe values of the specified properties.
MethodGetPropertyThe value of the specified property.
MethodIsEqualTrue if the property set is the same as the input property set.
MethodRemovePropertyRemoves a property from the set.
MethodSetPropertiesThe values of the specified properties.
MethodSetPropertyThe value of the specified property.
public void GetAllProperties (ref object names,ref object values                      //The name and value of all the properties in the property set.
);


public void GetProperties (object names,ref object values                       //The values of the specified properties.
);
public object GetProperty (string Name                                //The value of the specified property.
);

主要实例是打开Oracle数据库
//Personal Geodatabase e.g., database = "C:\\myData\\mypGDB.mdb"
<span style="font-size:14px;color:#3333ff;">public IWorkspace open_pGDB_Workspace(string database)</span>
<span style="font-size:14px;color:#3333ff;">{</span>
<span style="font-size:14px;color:#3333ff;"><span style="white-space:pre">	</span>ESRI.ArcGIS.esriSystem.IPropertySet propertySet = new ESRI.ArcGIS.esriSystem.PropertySetClass();</span>
<span style="font-size:14px;color:#3333ff;"><span style="white-space:pre">	</span>propertySet.SetProperty("DATABASE", database);</span>
<span style="font-size:14px;color:#3333ff;"><span style="white-space:pre">	</span>IWorkspaceFactory workspaceFactory = new ESRI.ArcGIS.DataSourcesGDB.AccessWorkspaceFactoryClass();</span>
<span style="font-size:14px;color:#3333ff;"><span style="white-space:pre">	</span>return workspaceFactory.Open(propertySet, 0);</span>
<span style="font-size:14px;color:#3333ff;">}</span>
// File Geodatabase e.g., database = "C:\\myData\\myfGDB.gdb"
<span style="color:#3333ff;">public IWorkspace open_fGDB_Workspace(string database)</span>
<span style="color:#3333ff;">{</span>
<span style="color:#3333ff;"><span style="white-space:pre">	</span>ESRI.ArcGIS.esriSystem.IPropertySet propertySet = new ESRI.ArcGIS.esriSystem.PropertySetClass();</span>
<span style="color:#3333ff;"><span style="white-space:pre">	</span>propertySet.SetProperty("DATABASE", database);</span>
<span style="color:#3333ff;"><span style="white-space:pre">	</span>IWorkspaceFactory workspaceFactory = new ESRI.ArcGIS.DataSourcesGDB.FileGDBWorkspaceFactoryClass();</span>
<span style="color:#3333ff;"><span style="white-space:pre">	</span>return workspaceFactory.Open(propertySet, 0);</span>
<span style="color:#3333ff;">}</span>

//SDE Geodatabase e.g., server = "Kona" // database = "sde" or "" if Oracle // instance = "5151" // user = "vtest" // password = "go" // version = "SDE.DEFAULT" public IWorkspace open_ArcSDE_Workspace(string server, string instance, string user,string password, string database, string version) { ESRI.ArcGIS.esriSystem.IPropertySet propertySet = new ESRI.ArcGIS.esriSystem.PropertySetClass(); propertySet.SetProperty("SERVER", server); propertySet.SetProperty("INSTANCE", instance); propertySet.SetProperty("DATABASE", database); propertySet.SetProperty("USER", user); propertySet.SetProperty("PASSWORD", password); propertySet.SetProperty("VERSION", version); IWorkspaceFactory workspaceFactory = new ESRI.ArcGIS.DataSourcesGDB.SdeWorkspaceFactoryClass(); return workspaceFactory.Open(propertySet, 0); }




转载于:https://www.cnblogs.com/dengshiwei/p/4258582.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/247333.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Angular自学笔记(?)ContentChild和ContentChildren

ContentChild 用法类似ViewChild, 获取投影中到组件或指令还有元素dom等 获取投影中但组件 import {AfterViewInit, Component, ElementRef, OnInit, ViewChild} from @angular/core;@Component({selector: app-content-child-panel,templateUrl

Angular自学笔记(?)属性型指令

基本概念 用于改变DOM元素的外观或行为的指令 组件是一种特殊的指令 import {Component} from @angular/core; @Component({selector: app-root,template: `<!--<app-for></app-for>--><div app-for>dasfsada</div>`,

SNS编年史

准备起草。转载于:https://www.cnblogs.com/cmleung/archive/2009/11/26/1611546.html

Angular自学笔记(?)结构型指令

内置指令的展开写法 ngIf import {Component } from @angular/core; @Component({selector: app-root,template: `<button (click)="show = !show">toggle</button><p *ngIf="show as aa">一段文字 {{ aa }}</p><ng-template…

SQL on and 和 on where 的区别

on and 和 on where 的 区别 在使用 left join 时, on and 和 on where 会有区别&#xff1b;1. on的条件是在连接生成临时表时使用的条件,以左表为基准 ,不管on中的条件真否,都会返回左表中的记录  on 后面 and 都是对右表进行筛选 2.where是全部连接完后&#xff0c;对临时…

:host :host-context ::ng-deep详解

:host 与 ::ng-deep :host 表示选择当前的组件。 ::ng-deep 可以忽略中间className的嵌套层级关系。直接找到你要修改的className。 在使用一些第三方的组件的时候&#xff0c;要修改组件的样式。 这种情况下使用: :host ::ng-deep .className{新的样式...... } :host {backg…

Java生鲜电商平台-缓存架构实战

Java生鲜电商平台-缓存架构实战 说明&#xff1a;在Java生鲜电商中&#xff0c;缓存起到了非常重要的作用&#xff0c;目前整个项目中才用的是redis做分布式缓存. 缓存集群 缓存集群存在的问题 1.热key 缓存集群中的某个key瞬间被数万甚至十万的并发请求打爆。 2.大value 某个k…

Java生鲜电商平台-深入理解微服务SpringCloud各个组件的关联与架构

Java生鲜电商平台-深入理解微服务SpringCloud各个组件的关联与架构 概述 毫无疑问&#xff0c;Spring Cloud是目前微服务架构领域的翘楚&#xff0c;无数的书籍博客都在讲解这个技术。不过大多数讲解还停留在对Spring Cloud功能使用的层面&#xff0c;其底层的很多原理&#xf…

Angular自学笔记(?)DI提供者

类提供者 类提供者的创建和使用 假设有logger类: import {Injectable } from @angular/core;@Injectable() export class LoggerService {logs: string[] = [

Angular自学笔记(?)生命周期

从实例化组件,渲染组件模板时,各声明周期就已开始 ngOnChanges 输入属性发生变化是触发,但组件内部改变输入属性是不会触发的 import {Component, Input, OnInit, OnChanges } from @angular/core;@Component({selector: app-life-cycle,templateUrl:

[转载]httpClient.execute抛Connection to refused异常问题

在4.0之后android采用了严格模式&#xff1a;所以在你得activity创建的时候&#xff0c;在super.onCreate(savedInstanceState);后面加上这个 StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder() .detectDiskReads() .detectDiskWrites(…

Angular自学笔记(?)依赖注入

什么是依赖注入 依赖注入(DI)是一种设计模式, 也有相应的框架,比如InversifyJS Angular 有自己的 DI 框架, DI 框架会在实例化该类时向其提供这个类所声明的依赖项 带修饰符的参数 在ts中,一个类的参数如果带上修饰符,那个参数就变成了类的实例属性 class Mobile {co…

MSN8.0经常出现连接错误,如何解决?

连接错误有很多种情形&#xff0c;请您先查看下连接错误代码 然后可以尝试以下解决办法--------- 如何解决错误 81000301 或 81000306 您登录 MSN Messenger 时&#xff0c;可能会收到以下错误消息&#xff1a; 我们无法让您登录到 MSN Messenger&#xff0c;可能是因为服务或 …

@ViewChild 的三种常用方法

//--1------ 在angular中进行dom操作 <div #dom>这是一个div</div> //放置一个锚点domimport { ElementRef, ViewChild } from angular/core;ViewChild(dom,{static:true}), eleRef:ElementRef; //static-True表示在运行更改检测之前解析查询结果&#xff0c;false…

SQL Server安装文件挂起错误解决办法

以前在安装sql的时候&#xff0c;如此提示&#xff0c;我只要重新启动即可&#xff0c;可是今天重新启动了N次计算机&#xff0c;问题却丝毫没有解决&#xff0c;依然提示这样的话。“以前的某个程序安装已在安装计算机上创建挂起的文件操作。运行安装程序之前必须重新启动计算…

angular 内容投影

app HTML <div class"wrapper"><h2>我是父组件</h2><div>这个div定义在父组件中</div><app-child><div class"header">这个div是父组件投影到子组件的1, {{title}}</div><div class"footer"…

移动端日历插件

//datePicker日期控件 v1.0//var calendar new datePicker();//calendar.init({// trigger: #demo1, /*选择器&#xff0c;触发弹出插件*/// type: date,/*date 调出日期选择 datetime 调出日期时间选择 time 调出时间选择 ym 调出年月选择*/// minDate:1900-1-1,/*最小日期*/…

js 操作location URL对象进行操作

把location 创建URL对象 构造器 new URL() 创建并返回一个URL对象&#xff0c;该URL对象引用使用绝对URL字符串&#xff0c;相对URL字符串和基本URL字符串指定的URL。 属性 hash 包含#的USVString&#xff0c;后跟URL的片段标识符。 host 一个USVString&#xff0c;其中…

aspx,ascx和ashx使用小结

做asp.net开发的对.aspx,.ascx和.ashx都不会陌生。关于它们&#xff0c;网上有很多文章介绍。“纸上得来终觉浅&#xff0c;绝知此事要躬行”&#xff0c;下面自己总结一下做个笔记。 1、.aspx Web窗体设计页面。Web窗体页由两部分组成&#xff1a;视觉元素&#xff08;html、服…

vue3.x通过ref属性获取元素

在vue2.x中&#xff0c;可以通过给元素添加refxxx属性&#xff0c;然后在代码中通过this.$refs.xxx获取到对应的元素 然而在vue3中时没有$refs这个东西的&#xff0c;因此vue3中通过ref属性获取元素就不能按照vue2的方式来获取vue3需要借助生命周期方法&#xff0c;原因很简单…