`
faxMonkey
  • 浏览: 29431 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论
文章列表
最近研究google Map api V3 被右键添加菜单困扰 1、目前网络上的大多数是基于V2版本的开发文档 2、添加的菜单样式不与主题样式有出入需要兼容主题框架样式 经过试验V3版本 兼容jQuery easyUI 的菜单简单DEMO如下 var map; function initialize() { var myOptions = { zoom : 8, center : new google.maps.LatLng(-34.397, 150.644), mapTypeId : google.maps.MapTypeId.ROADMAP } ...
update 表名 set 字段名 = rownum
insert into table_name (column1,column2,...) select columnx,columny,... from another_table tips
REG_EXP_DATE = "^((([0-9]{3}[1-9]|[0-9]{2}[1-9][0-9]{1}|[0-9]{1}[1-9][0-9]{2}|[1-9][0-9]{3})-(((0[13578]|1[02])-(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)-(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))))|((([0-9]{2})(0[48]|[2468][048]|[13579][26])|((0[48]|[2468][048]|[3579][26])00))-02-29))\ ...
DROP TABLE DATA_SYNCH_LOG_DAY DROP TABLE DATA_SYNCH_CYCLE_TOTAL CASCADE CONSTRAINTS --- create table TABLE_NEW as select * from TABLE_OLD 创建一个一样的表
修改字段类型 alter table FILMLOG modify COMEFROMTYPE NVARCHAR2(16); alter table 表名 modify 字段名 类型; 修改字段是否为空 alter table 表名 modify 字段名 null / not null; 修改字段名称 alter table FILMLOG rename column FLOGFILMFID to FID; alter table 表名 rename column 字段名原名 to 字段名新名; 删除某个字段 alter table factory drop column factory_id ...
Select Tools-->Display Preferences to display the Display Preferences dialog box. Select the Snap to grid check box. 选择 Tools-->Display Preferences 在General中选中 Snap to grid 复选框 生成的模型 会粘贴到模型附近的网格
官方网站 http://commons.apache.org/lang/ 下载地址 http://commons.apache.org/lang/download_lang.cgi 版本 commons-lang3-3.0-beta 测试方法 public static String strip(String str) public static String strip(String str,String stripChars) public static String stripToNull(String str) publ ...
官方网站 http://commons.apache.org/lang/ 下载地址 http://commons.apache.org/lang/download_lang.cgi 版本 commons-lang3-3.0-beta 测试方法 public static String trim(String str) public static String trimToNull(String str) public static String trimToEmpty(String str) 测试代码 String emptyString = ""; S ...
官方网站 http://commons.apache.org/lang/ 下载地址 http://commons.apache.org/lang/download_lang.cgi 版本 commons-lang3-3.0-beta 测试方法 public static boolean isEmpty(CharSequence cs) public static boolean isNotEmpty(CharSequence cs) 测试代码 String emptyString = ""; String nullString = null; Strin ...
Global site tag (gtag.js) - Google Analytics