警告:未能解析引用的程序集“*******, Version=1.0.0.0,
Culture=neutral,”,因为它对不在当前目标框架“.NETFramework,Version=v4.0,Profile=Client”中的“System.Data.OracleClient,
Vers...
分类:
其他好文 时间:
2014-05-10 07:54:23
阅读次数:
296
转自:http://blog.csdn.net/cdl2008sky/article/details/7266785一、GeotoolsThe
Open Source Java GIS Toolkithttp://geotools.org/
Geotools官方网站http://docs.geoto...
分类:
其他好文 时间:
2014-05-10 07:47:12
阅读次数:
680
组里用的几台机器换了网段,MongoDB需要做重新配置。查看Replica
Set的状态如下:rs.status(){ "startupStatus" : 1, "ok" : 0, "errmsg" : "loading
local.system.repls...
分类:
数据库 时间:
2014-05-10 06:26:06
阅读次数:
693
摘要: 说明: Linux服务器操作系统:CentOS 5.8
32位(注意:系统安装时请单独分区/data用来安装oracle数据库) Linux服务器IP地址:192.168.21.150
Oracle数据库版本:linux_11gR2_database Wind...说明:Linux服务器操作...
分类:
数据库 时间:
2014-05-10 06:16:37
阅读次数:
554
raspberry的/usr/local/src目录没有权限,可执行如下命令pi@raspberrypi:~$
sudo chmod -R 777 /usr/local/src
(-R是对所有子文件夹都有效)开始下载软件:cd/usr/local/src/sudowgethttp://www.pyt...
分类:
编程语言 时间:
2014-05-10 05:57:19
阅读次数:
355
问题最近在给 android 系统的 data 分区制作 ext4
镜像,但是发现系统启动后,文件的 user 和 group 都变成了 root,不是原有的属性。困扰了很久。解决make_ext4fs 有一个选项是 ‘-a’
,即挂载点。这个选项是配合android/system/core/inc...
分类:
其他好文 时间:
2014-05-10 05:53:22
阅读次数:
1777
在下例中,演示了链表的各种操作
#include
using namespace std;
typedef struct Node
{
int data; //数据域
struct Node * next; //指针域
}NODE, *PNODE; //NODE相当于struct Node, PNODE相当于struct Node *
PNODE CreateList()...
分类:
其他好文 时间:
2014-05-10 04:29:49
阅读次数:
263
Problem DescriptionA tree is a well-known data
structure that is either empty (null, void, nothing) or is a set of one or more
nodes connected by dire...
分类:
其他好文 时间:
2014-05-10 03:18:52
阅读次数:
374
1、整行数据更新//获取grid表格var table0 =
$(updateTableID).data("kendoGrid");//删除第一条var lastTableData =
table0.dataSource.at(0);table0.dataSource.remove(lastTabl...
分类:
其他好文 时间:
2014-05-10 02:49:35
阅读次数:
1090
测试webservice的时候,如果出现这个错误:"The test form is only
available for requests from the local machine" 在web.config中加入以下配置,就可以解决问题。
也就是说,在默认情况下,...
分类:
Web程序 时间:
2014-05-10 02:24:13
阅读次数:
352