2016年7月31日

使用 Jasmine 进行测试驱动的 JavaScript 开发

摘要: 使用 Jasmine 进行测试驱动的 JavaScript 开发 阅读全文

posted @ 2016-07-31 23:02 一値很安靜;︶ 阅读(87) 评论(0) 推荐(0) 编辑

javascript单元测试

摘要: javascript单元测试 阅读全文

posted @ 2016-07-31 22:35 一値很安靜;︶ 阅读(88) 评论(0) 推荐(1) 编辑

2016年6月22日

MySQL查询当前数据库中所有记录不为空的表

摘要: select TABLE_NAME from information_schema.tables where TABLE_SCHEMA='当前数据库' and table_rows>0; 阅读全文

posted @ 2016-06-22 16:40 一値很安靜;︶ 阅读(1939) 评论(0) 推荐(0) 编辑

2016年6月16日

cannot be resolved to a type的错误

摘要: 这个错误可能是服务器自带的servlet库未导入的原因。右键项目属性,转到Targeted Runtimes,选择一个服务器,例如Tomcat,单击应用,可能就可以解决。 阅读全文

posted @ 2016-06-16 16:11 一値很安靜;︶ 阅读(666) 评论(0) 推荐(0) 编辑

oracle 表空数据导出dmp ,空表导出失败

摘要: 执行 此SQL select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0; 查到的数据导出tsv格式文件; 然后执行tsv格式文件 内容; 再次执行 导出 dmp 阅读全文

posted @ 2016-06-16 16:09 一値很安靜;︶ 阅读(201) 评论(0) 推荐(0) 编辑

2016年6月15日

Iterable<E> Iterator<E>

摘要: 接口 Collection<E> 继承 Iterable<E> public interface Collection<E> extends Iterable<E> 方法 Iterator<E> iterator(); 接口 Iterable<T> 方法 Iterator<E> iterator() 阅读全文

posted @ 2016-06-15 01:02 一値很安靜;︶ 阅读(359) 评论(0) 推荐(0) 编辑

2016年6月14日

mysql 导入 导出

摘要: 导出 [root@localhost tmp]# mysqldump -uroot -p odsv6_2 > /tmp/odsv6_2.sql 导入 use odsv6_2.sql ; mysql> source /tmp/odsv6_2.sql 或 [root@localhost tmp]# my 阅读全文

posted @ 2016-06-14 17:31 一値很安靜;︶ 阅读(97) 评论(0) 推荐(0) 编辑

MySQL数据库服务器和数据库MySQL字符集。

摘要: 查看MySQL数据库服务器和数据库MySQL字符集。 二、查看MySQL数据表(table)的MySQL字符集。 三、查看MySQL数据列(column)的MySQL字符集。 阅读全文

posted @ 2016-06-14 16:48 一値很安靜;︶ 阅读(166) 评论(0) 推荐(0) 编辑

scp 命令

摘要: [root@sinosoftDB tmp]# scp /tmp/aurora_ods_v6.2.sql root@10.10.15.16:/tmp/ scp root@/full.tar.gz 172.19.2.75:/home/root/full.tar.gz home/daisy/full.ta 阅读全文

posted @ 2016-06-14 16:04 一値很安靜;︶ 阅读(166) 评论(0) 推荐(0) 编辑

? extends E; ? super E

摘要: ? extends E: 可以接收E类型或者E的子类型。上限。 ? super E: 可以接收E类型或者E的父类型。下限 阅读全文

posted @ 2016-06-14 01:23 一値很安靜;︶ 阅读(278) 评论(0) 推荐(0) 编辑

导航