惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Darknet – Hacking Tools, Hacker News & Cyber Security
V
Vulnerabilities – Threatpost
Cloudbric
Cloudbric
G
GRAHAM CLULEY
S
Securelist
Schneier on Security
Schneier on Security
Help Net Security
Help Net Security
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Project Zero
Project Zero
Spread Privacy
Spread Privacy
P
Privacy International News Feed
C
Cyber Attacks, Cyber Crime and Cyber Security
Cisco Talos Blog
Cisco Talos Blog
T
Tailwind CSS Blog
博客园_首页
有赞技术团队
有赞技术团队
Simon Willison's Weblog
Simon Willison's Weblog
Stack Overflow Blog
Stack Overflow Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Latest news
Latest news
T
Tor Project blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Attack and Defense Labs
Attack and Defense Labs
www.infosecurity-magazine.com
www.infosecurity-magazine.com
O
OpenAI News
J
Java Code Geeks
T
Tenable Blog
K
Kaspersky official blog
AWS News Blog
AWS News Blog
S
Security @ Cisco Blogs
The GitHub Blog
The GitHub Blog
T
Threatpost
月光博客
月光博客
H
Heimdal Security Blog
Security Latest
Security Latest
The Hacker News
The Hacker News
Y
Y Combinator Blog
A
Arctic Wolf
Apple Machine Learning Research
Apple Machine Learning Research
C
Cisco Blogs
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
C
CERT Recently Published Vulnerability Notes
D
Docker
Google Online Security Blog
Google Online Security Blog
D
DataBreaches.Net
V
Visual Studio Blog
H
Help Net Security

博客园 - GIS9 开发探索

实现在EXCEL软件中进行用户轨迹时空重合分析 疫情地图 | 制作10月12日沈阳浑南区核酸结果异常人员轨迹地图 表格排重 | EXCEL表格数据排重,使用相同颜色标记相同值 地理计算 | 批量创建图形的中点或质点 EXCEL教程 | 制作无症状感染者活动轨迹地图,以郑州疫情通告为例 EXCEL技能 | EXCEL中进行地图搜索并将结果显示在表格中 EXCEL技能 | EXCEL中实现地图快照,截大图、加水印、保存PNG、TIF、HTML文件 安装VS时,双击setup.exe后界面一闪而过的问题 【小o地图Excel插件版】计算两点间驾车路径,获取途径道路、驾车距离、耗时等信息 【小o地图Excel插件版】不止能做图表,还能抓58、大众点评网页数据... 【转】C#中判断网址是否有效 WIN10安装不上IIS,使用IISExpress作为发布服务 Excel地图插件(ExcelMaps) 局域网内通讯APP JDBC连接SqlServer错误:com.microsoft.sqlserver.jdbc.SQLServerException: 到主机 的 TCP/IP 连接失败。 java.net.ConnectException: Connection refused: connect - GIS9 开发探索 连接SQL Server数据库提示:Login failed for user 'sa'. Reason: Not associated with a trusted SQL Server connection 错误 - GIS9 开发探索 ArcGIS开发时,执行new SdeWorkspaceFactoryClass(); 出现COM类工厂的错误 [原创]WEB服务调试器,支持服务测试,监控告警 - GIS9 开发探索 web技术简介
AO开发时,ISqlWorkspace执行SQL语句,无法连接其他主机上的Oracle
GIS9 开发探索 · 2012-07-26 · via 博客园 - GIS9 开发探索

代码如下,目的是创建链接Oracle数据的Sqlworkspace对象,
Type factoryType = Type.GetTypeFromProgID("esriDataSourcesGDB.SqlWorkspaceFactory");
IWorkspaceFactory workspaceFactory = (IWorkspaceFactory)Activator.CreateInstance(factoryType);
// Create the connection properties.
IPropertySet connectionProps = new PropertySetClass();
connectionProps.SetProperty("dbclient", "Oracle11g");
connectionProps.SetProperty("serverinstance", "MyServer");
connectionProps.SetProperty("authentication_mode", "DBMS");
connectionProps.SetProperty("user", "MyLogin");
connectionProps.SetProperty("password", "MyPassword");
// Open the workspace.
IWorkspace workspace = workspaceFactory.Open(connectionProps, 0);

报错:无法链接其他主机上的Oracle数据库。

原因:("dbclient", "Oracle11g"); 设置参数不能为大写,正确为("dbclient", "oracle11g");