`
dangyafeng
  • 浏览: 25192 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论
文章列表
建表create table TEST1create table TEST1(  t_id       VARCHAR2(21),  t_name     VARCHAR2(21),  t_mangerid VARCHAR2(21)) create table TEST2(  t_id   VARCHAR2(21),  salary NUMBER) test1 暂且叫员工表吧,test2薪水表 在oracle中 外链接为 a  left/right join b on a.xx = b.xx其中join后面也可以添加outer也可以省略,相当于a.xx = b.xx (+)(此时为左链接) ...
附件里面一个是sql脚本,一个是Java操作数据库类文件。  
由于截图不方便,所以把一些用法写到了word文档中。
public static String getFilePropertyValue(String key) throws IOException { Properties fileLibConfig = new Properties(); fileLibConfig.load( new InputStreamReader( SysUtils.class.getResourceAsStream ("/com/dreamjm/config/config.propertie ...
1.直接用xml字符串创建Document对象,并取得相应属性的值。         Document xmlDoc = DocumentHelper.parseText(requestXmlStr);//创建document对象 Element root = xmlDoc.getRootElement(); //取得根目录的Element对象 String optType = root.element("Msgbody").element("optType").getText(); ...
本人在学习Axis2过程中,使用axis2提供的两个myeclipse插件时,生成代码最后点“完成”时,老出现java_lang_reflect_InvocationTargetException错误。弄了两天时间,终于找到解决的办法。本人的环境如下:Myeclipse 5.1 GAAxis2 1.4.1插件安装略, 问题现象:在用插件生成代码时,老是在最后点击“finish”时出现java_lang_reflect_InvocationTargetException错误。开始时以为是我本人的系统环境变量出现问题,后来查找原因,是因为插件的原因。 问题原因:主要的问题在于 Code Gene ...
1、下载MyEclipse Axis2插件     1) http://apache.justdn.org/ws/axis2/tools/1_1_1/axis2-eclipse-codegen-wizard.zip     2) http://apache.justdn.org/ws/axis2/tools/1_1_1/axis2-eclipse-service-archiver-wizard.zip 2、将插件解压缩到MyEclipse根目录下的Axis-Plugin-Dir\eclipse\plugins(D:\MyEclipse 6.0\eclipse\plugins)目录中,将Axi ...
电话号码校验 function isTelNum(number){ var isTelNumber=false; var patrn=/^((((0[1-9]\d{1,2}\s)|(\(0[1-9]\d{1,2}\))|(0[1-9]\d{1,2}-?))?[1-9]\d{6,7})|(0?1(3|5|8)\d{9}))$/; if(patrn.test(number)){ isTelNumber=true; } return isTelNumber; }   邮箱校验 function isEmail(ema ...
shfit+ctrl+F6格式化代码 ctrl+shift+Y选中单词变小写 ctrl+shift+x选中单词变大些 ctrl+shift+R查询所有文件
windows-->preferences-->contentTypes 选择文件类型,底下可以设置编码。 当导入别人做的代码出现乱码问题时可以通过次操作调整编码。
下拉列表选择值的获取 html页面: <select id="appType2" onchange="searchTypeSelect(this.options[selectedIndex].value,this.options[selectedIndex].text);"> <option value="-1">--请选择--</option> <option value="个人">个人</option> <opt ...
 ;考虑;离开;
Global site tag (gtag.js) - Google Analytics