导入sql文件,提示SQL语句过长错误把mysql的配置文件my.ini中的max_allowed_packet = 6M变大可以解决。……
Continue reading
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。 先建一个测试表了: create table userlogin ( id number(6) not null, name varchar2(30) not null primary key ) tablespace users 第一步:创建SEQUENCE create sequence userlogin_seq increment by 1 start with……
Continue reading
history.go(0); location.reload(); location = location; location.assign(location); document.execCommand('Refresh'); window.navigate(location); location.replace(location); document.URL = location.href;……
Continue reading
if ($("#readme").attr("checked") != "checked") { alert("hello"); return; }……
Continue reading
详细步骤说明: 一、安装PHP 首先确认IIS中启用了CGI功能: IIS 7.5中为了易于PHP程序的安装,增设了PHP Manager模块。只要您简单设定,其它的工作自动到位!下载地址: http://phpma……
Continue reading