第一种方式:(Last-Modified)1 客户端,第一次请求A页面2 服务器会在响应头中加一个字段:Last-Modified,用于标示服务器返回的文件最后修改时间3 客户端,第二次请求A页面,这时候,客户端在请求头中就有一个字段:If-Modify-Since4 服务器收到请求后,用自动获取该...
分类:
Web程序 时间:
2015-06-09 16:27:01
阅读次数:
153
--查看文件逻辑名SELECT name FROM sys.database_filesALTER DATABASE [本身数据库名称]MODIFY FILE ( NAME = [原错误数据库名称], NEWNAME = [新正确数据库名称] )--修改文件-逻辑名ALTER DATABASE [z...
分类:
数据库 时间:
2015-06-08 13:14:44
阅读次数:
121
1)Driver template 选择MySQL Connector/J
2)Driver name 可以自定义取名。
3)Connection URL 连接字符串,需要说明的是例子中
jdbc:mysql://127.0.0.1:3306/test,“127.0.0.1”也可写成“localhost”,“3306”为mysql默认的端
口,“test”是所要连接的数据库名称。
4)User name 连接数据库的用户名,mysql默认为“root”。
5)Passwo...
分类:
数据库 时间:
2015-06-07 17:31:06
阅读次数:
193
设置相关脚本:默认:$cat /proc/sys/net/ipv4/ip_local_port_range32768 61000$cat setting.sh#/bin/bash# modify backlog, meanwhile change listen function to 1024, ....
分类:
其他好文 时间:
2015-06-05 17:00:26
阅读次数:
371
CREATE OR REPLACE PROCEDURE ModifyColumnTypeIS sqlRenameColumn CONSTANT VARCHAR2(100) := 'alter table [tablename] rename column [targetcolumn] to [tar...
分类:
其他好文 时间:
2015-06-05 15:29:58
阅读次数:
97
#includeconst int M = 1e5 ;int a[M] , c[M];int n , m ;void modify (int x , int add ){ for (; x 0 ; x -= x & (-x)) ret += c[x] ; return r...
分类:
编程语言 时间:
2015-06-04 06:10:38
阅读次数:
117
When learning a new programming language, it's important to try the examples in the book, and then modify them and try them again to test your underst...
分类:
编程语言 时间:
2015-06-03 21:14:53
阅读次数:
126
project.properties
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To...
分类:
移动开发 时间:
2015-06-02 20:14:31
阅读次数:
143
1.Oracle、MySQL插入时返回下一个主键的操作Xml代码 Oracle:insert into ROLE(ID, NAME, CREATE, MODIFY) values (#{id}, #{name}, sysdate, sysdate)注意:这边的keyProperty="id"中"id...
分类:
数据库 时间:
2015-06-02 17:04:43
阅读次数:
246
--------1.添加分区(以下代码给sales表添加了一个p3分区)alter table sales add partition p3 values less than(to_date('2003-06-01','yyyy-mm-dd'));alter table sales modify p...
分类:
其他好文 时间:
2015-05-30 01:47:58
阅读次数:
127