- 浏览: 35480 次
- 性别:
- 来自: 河北
最新评论
-
liyf_324:
不好意思,好久不看115网盘了,现在它的分享功能关闭了,想要的 ...
简易Oracle客户端配置
文章列表
之前在测试一个FUNCTION的时候都是用pl/sql提供的test,但我今天写一个函数需要递归的时候就不知道怎么做了,还好见别人用sql测了我写的函数,所以这个递归就好写多了,废话少说测试FUNCTION的sql如下:
SELECT FUNCTIONNAME('参数') FROM DUAL;
有递归的sql如下:
create or replace function IS_BLOCK
(IN_DOMAINID IN NUMBER
) return NUMBER is
VAR_COUNT NUMBER;
VAR_PARENTID NUMBER;
Result NUMBER ...
最近研究用Hexo来搭博客。再换了个next theme后,执行任何hexo命令后都会得到一个Error提示:
Error: Cannot find module 'hexo-util'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (/home/CORPUSERS/xp014256/workspace ...
最近在搭hexo时遇到这个一个错:“/usr/bin/env: node: No such file or directory”
首先我已经装上Node.js了,但是没装node,我试着apt-get install node好像也没解决,然后翻到了github的这样一个issue:https://github.com/nodejs/node-v0.x-archive/issues/3911
意思是说用命令行装的Node.js后还要手动加一个软连接:
sudo ln -s /usr/bin/nodejs /usr/bin/node
答案转载自:http://stackoverflow.com/questions/24577480/org-codehaus-groovy-grails-cli-support-grailsstarter-not-found-error
最近升级了Ubuntu系统,可是后来在运行grails项目时出现了:“Could not find or load main class org.codehaus.groovy.grails.cli.support.GrailsStarter” 的错误,google了好久发现被一个奇怪的答案解决了:
进入grails/bin目录在命令行下运行 ...
今天在Ubuntu 14.04上安装docker时遇到一个代理的问题 ,出错如下:
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --homedir /tmp/tmp.poBpYdk3bZ --no-auto-check-trustdb --trust-mo ...
昨天我在远程连接postgres数据库时遇到这样的错误:
psql: could not connect to server: Connection refused
Is the server running on host "my host name" (IP) and accepting
TCP/IP connections on port 5432?
于是我修改了postgresql.conf:
listen_addresses = '*'
在pg_hba.conf, 添加了我的IP,如下:
#for n/w access ...
/**
* @file ldap_util.php
*
* @author Li Yongfeng
*/
function getUserEmail($userId) {
$ldap_host = "ldap://***/";
$ldap_user = "***";
$ldap_pwd = "***";
$ldap_conn = ldap_connect($ldap_host) or die("Can't connect to LDAP server ...
之前用PHP的一个项目用到了LDAP,度娘,谷歌了一直没有配好,所以记录一下我自己的配置(我的机子是ubuntu):
//有人说安装这个就好,我自己用到反正是不行,查的说ldap会用到lasso,所以还得安装下php5-lasso的命令。
sudo apt-get install php5-ldap;
sudo apt-get install php5-lasso;
Could not connect to SMTP host: smtp.exmail.qq.com, port: 25;解决方法:
记得setSsl(true);我把端口号设置成了587
email.setHostName(hostName);
email.setSSL(true);
email.setSslSmtpPort(sslSmtpPort);
email.setFrom(mailbox, mailbox);
email.setAuthentication(mailbox, password);
email.setSubje ...
之前开发我们用的是Oracle数据库,客户端安装太大,所以就在网上找了一个简易的客户端,自己试了,并改了一些终于可以用了,分享给大家~
http://115.com/file/e7yti3eh