ERROR: could not load library "D:/Program
Files/PostgreSQL/9.3/lib/postgis-2.1.dll": Invalid access to memory
location.这个错误,参照:http://trac.osgeo.org/p...
分类:
数据库 时间:
2014-05-19 23:52:29
阅读次数:
1776
分区的过程正常:[root@db1 /]#fdisk -lDisk /dev/sda:
21.4 GB, 21474836480 bytes255 heads, 63 sectors/track, 2610 cylindersUnits =
cylinders of 16065 * 512 = 82...
分类:
系统相关 时间:
2014-05-19 23:51:01
阅读次数:
644
最近在做毕设的收尾工作,很多程序都要部署到linux下来运行,遇到了挺多问题,昨天就集中性遇到了 在编译应用时,遇到了/usr/bin/ld: cannot
find -lxxx这种情况是系统找不到对应的库文件,其中,-lxxx表示链接库文件 libxxx.so。其命名规则是:lib+库名(即xxx...
分类:
其他好文 时间:
2014-05-19 21:30:52
阅读次数:
226
1.Access数据库的DSN-less连接方法:set
adocon=Server.Createobject("adodb.connection")adoconn.Open"Driver={Microsoft
Access Driver(*.mdb)};DBQ="& _Server.MapPath...
分类:
数据库 时间:
2014-05-19 21:25:01
阅读次数:
392
Question 1:Given an array of integers, find two
numbers such that they add up to a specific target number.The function twoSum
should return indices of...
分类:
其他好文 时间:
2014-05-19 09:35:41
阅读次数:
321
1.加载数据库驱动(jar文件)
//需要下载一个数据库的jar包,并导入相应的JDBC项目中,创建路径!
Class.forName("com.mysql.jdbc.Driver");
2.获得数据库连接
DriverManager.getConnection("jdbc:mysql://Database_IP:3306/DATABASE","DATAR...
分类:
数据库 时间:
2014-05-16 02:54:54
阅读次数:
320
修改及查看mysql数据库的字符集Liunx下修改MySQL字符集:1.查找MySQL的cnf文件的位置find/-iname‘*.cnf‘-print/usr/share/mysql/my-innodb-heavy-4G.cnf/usr/share/mysql/my-large.cnf/usr/share/mysql/my-small.cnf/usr/share/mysql/my-medium.cnf/usr/share/mysql/my-huge.cn..
分类:
数据库 时间:
2014-05-16 02:33:28
阅读次数:
426
material=newMaterial(Shader.Find("Custom/Alpha"));material.SetFloat("_Shininess",materialAlpha);voidOnRenderImage(RenderTexturesource,RenderTexturedestination){Graphics.Blit(source,destination,material);}
分类:
其他好文 时间:
2014-05-16 02:28:04
阅读次数:
572
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero....
分类:
其他好文 时间:
2014-05-16 01:34:36
阅读次数:
293
【题目】
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a contain...
分类:
其他好文 时间:
2014-05-16 01:32:47
阅读次数:
406