--开启 Ole Automation Proceduressp_configure 'show advanced options', 1;GORECONFIGURE;GOsp_configure 'Ole Automation Procedures', 1;GORECONFIGURE;GOEXEC...
分类:
数据库 时间:
2015-02-01 11:54:12
阅读次数:
189
//新增] @Test public void add(){ config = new Configuration(); sessionfactory = config.configure("hibernate.cfg.xml").buildSessionFactory(); session = ....
分类:
其他好文 时间:
2015-01-31 14:20:03
阅读次数:
220
帮助信息./configure -help|grep mysql安装php./configure --prefix=/usr/local/fastphp --with-mysql=mysqlnd\--enable-mysqld\--with-gd\--enable-gd-native-ttf\--e...
分类:
系统相关 时间:
2015-01-29 19:13:42
阅读次数:
243
一.在/usr/local下创建文件夹:/usr/local/man和/usr/local/man1
二.安装ctags
wget http://prdownloads.sourceforge.net/ctags/ctags-5.8.tar.gz
tar -zxvf ctags-5.8.tar.gz
cd ctags-5.8
./configure...
分类:
Web程序 时间:
2015-01-29 15:57:56
阅读次数:
156
1,安装软件途中需要安装这俩,首先升级下python到2.7 or newer从python官网下载相应的source package,$tar -xJf Python-2.7.xz$cd Python-2.7$./configure --prefix=$HOME/python-2.7/ --ena...
分类:
其他好文 时间:
2015-01-29 14:06:13
阅读次数:
258
# 静态库编译配置
./configure --enable-static --disable-debug --disable-yasm --prefix=/usr/local/ffmpeg
# 动态库编译配置
./configure --enable-shared --prefix=/usr/local/ffmpeg
# 编译并安装
make
make install
# 如果安装成功,安装的...
分类:
其他好文 时间:
2015-01-29 10:34:39
阅读次数:
210
public class TestMemcached {
public static void main(String[] args) {
// memcached should be running on port 11211 but NOT on 11212
BasicConfigurator.configure();
String...
分类:
编程语言 时间:
2015-01-29 10:29:38
阅读次数:
199
Hibernate工作原理及为什么要用?原理:1.通过Configuration().configure();读取并解析hibernate.cfg.xml配置文件2.由hibernate.cfg.xml中的读取并解析映射信息3.通过config.buildSessionFactory();//创建S...
分类:
其他好文 时间:
2015-01-28 21:06:20
阅读次数:
267
原因:显示红色感叹号是因为jar包的路径不对
解决:在项目上右击Build Path -> Configure Build Paht...(或Propertise->Java
Build Path),在Java Build Path中Libraries,红色叉号的包为路径错误的包。
处理好后返回刷新工程即可,这个问题一般是导入别人的项目或之前的一些JAR包移动了它的存储位置。
...
分类:
系统相关 时间:
2015-01-28 17:52:06
阅读次数:
208
Nginx 使用 Unix 下常用的 './configure && make && make install' 过程来编译安装。configure 脚本确定系统所具有一些特性,特别是 nginx 用来处理连接的方法。然后,它创建 Makefile 文件。configure 支持下面的选项:--pr...
分类:
其他好文 时间:
2015-01-28 17:24:11
阅读次数:
209