`
wayJava
  • 浏览: 29268 次
  • 性别: Icon_minigender_1
  • 来自: 福建
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表

plsql 异常

http://chenhua-1984.iteye.com/blog/990970 http://chenhua-1984.iteye.com/blog/996018   begin begin while(true) loop select seq_user_number.nextval into result from dual; select user_number into user_number from user_number where user_number=result; end loop; exception ...

hibernate问题

    博客分类:
  • ssh
could not load an entity: [com.xxx.yyy.Sellinfo#1]   ***.hbm.xml文件中的某个列名和数据库中的不同。
  用chmod还是不能删除文件?   chown -R ebrowse:ebrowse antwork/ (r大写)
04/29 遇到  XX类 is not mapped 。   但我的src/hibernate.cfg.xml中已经配置。   原因是test/hibernate.cfg.xml中未配置,而项目启动时认为的classPath是test目录。   修改.myhibernate的configFile指向正确的,并重新布署就行了。   注在.classpath文件中可以看到test的kind 是src
//create create temporary tablespace EB_TEMP_TS tempfile '/u01/app/oracle/oradata/orcl/EB_TEMP_TS.DBF' size 32m autoextend on next 32m maxsize 1024m extent management local; create tablespace EB_DATA_TS logging datafile '/u01/app/oracle/oradata/orcl/EB_DATA_TS.DBF'   size 32m autoextend on next 32m ...
http://weizhigan.iteye.com/blog/719957     public class SpringContextUtil implements ApplicationContextAware { private static ApplicationContext applicationContext; //Spring应用上下文环境 /** * 实现ApplicationContextAware接口的回调方法,设置上下文环境 * @param applicationContext * @throws B ...
http://www.360doc.com/content/10/1111/18/4498723_68544101.shtml       MS操作系统的发展 MSDOS--->DOS+Win3.2-->Win9X /  --->WinXP  WindowsNT3.1---NT4.0-->Win2000 /   他的发展是从DOS这个纯字符界面的系统发展到一个由字符界面  的内核加上一个图像界面的应用程序(Win3.2)再到结合把两个  合为一体的Win95,到现在再并上一开始就是图形界面的NT成为  WindowsXP,他未来的野心就是并上internet成为 ...
(一) Apache 通过 ajp 与Tomcat连接   <Connector port="8888" protocol="HTTP/1.1"                connectionTimeout="20000"                redirectPort="8443" URIEncoding="UTF-8" />   <Connector port="8889" protocol="AJP/1.3" ...
1  apache重新启动   win: 第一步:添加httpd.exe所在的目录为环境变量   第二部:执行httpd -k restart   linux: 如果是linux自己带的apache的话就使用命令 service httpd start 启动 service httpd stop 关闭 service httpd restart 重新启动 如果不是linux自带的apache,或者你的linux根本就没带,是你自己按在/usr/local的话。 进入/usr/local/bin下 cd /usr/local/bin 找到可 ...
  rownum和order by 以及index的关系 引http://blog.csdn.net/daimin1983/archive/2008/08/28/2843789.aspx     顺序 select rownum ,a.* from product_application_cfg a order by a.app_id; select row_number()over(order by a.app_id),a.* from product_application_cfg a ;   而union all只是简单的将两个结果合并后就返回。  
现在做了一些测试,发现querymobile的效率低非常多,后面新作的界面先不要用jquerymoble了     <!--StartFragment --> 可以借鉴一下这个网站的样式 http://m.dianping.com/ dl dd dt http://happymen001.iteye.com/blog/566931 也就是说<dt>用来创建列表中的上层项目,<dd>用来创建列表中最下层项目,<dt>和<dd>都必须放在<dl>< /dl>标志对之间。 <dl> &l ...
String remotePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort();
首先要清楚一点的是,每一个基站都能够通过请求http://www.google.com/loc/json获取到一个经纬度。如果用户能够在短时间内获取到较多的基站信息,比如4个或5个,可以通过这几个基站的经纬度计算出比较准确的用户位置。 举个例子,比如我在WM上取到4个基站信息: 50554,9513,460,1 50325,9513,460,1 50584,9513,460,1 50041,9513,460,1 每一行的4个数值分别对应:CID, LAC, MCC, MNC 说明: CID——CellID,表示基站号 LAC——Location Area Co ...
目前知道有4种方法 1,minus 2, not in  (保证返回的值不会出现NULL值) 3,not exists 4,left join where is null  ---- IN 和EXISTS在逻辑上是相同的。IN语句比较由子查询返回的值,并在输出查询中过滤某些行。EXISTS语句比较行的值,并在子查询中过滤某些行。对于NULL值的情况,行的结果是想同的。然而当逻辑被逆向使用,即NOT IN 及NOT EXISTS时,问题就会产生:NOT IN 语句实质上等同于使用!=(<>)比较每一值,假如测试为FALSE或者NULL,结果为失败。 一个基本通用的结论:I ...

连接表

select* from(select * from user_application_customize where user_id = 100134) a,product_application_cfg bwhere a.app_id(+)=b.app_id   与 select * from user_application_customize a,product_application_cfg bwhere a.user_id=100134 and a.app_id(+)=b.app_id   下一句  外连就失去了作用。
Global site tag (gtag.js) - Google Analytics