这个错误的出现,原因是:出这个错误是因为header(‘Content-Type:text/html;charset=UTF-8‘);发送头之前不能有任何输出。检查了下我的输出,错误信息如下:Warning:Cannotmodifyheaderinformation-headersalreadysentby(outputstartedat/data/home/qxu1084910324/htdocs/bw_fea..
分类:
其他好文 时间:
2015-08-04 23:23:08
阅读次数:
188
查询第一条数据select * from tableName where rownum <= 1修改列名:ALTER TABLE BD_PRI RENAME COLUMN EU_PRIMD TO CODE修改列类型:ALTER TABLE TableName MODIFY(CODE VARCHAR(...
分类:
数据库 时间:
2015-08-04 18:42:23
阅读次数:
124
数据定义语言:Datadefinitionlanguage,简称DDL,其包括createdropalter等语句Createtable/database表名/数据库名;Droptable表名;(记录和结构都被删除)Altertable表名addcolumn新增加的列名类型;Altertable表名modify列名类型;(修改表当中列的属性)Altertable表名chan..
分类:
数据库 时间:
2015-08-02 06:41:25
阅读次数:
199
sql修改字段长度的语法:alter table 表名 modify 字段名 字段类型;sql修改字段长度的示例代码alter table qtline modify qtl_bidernote VARCHAR2(4000);标准SQL,对任何数据库都适用alter table fzrtmis.re...
分类:
数据库 时间:
2015-07-31 17:42:41
阅读次数:
129
提交:git commit -m‘modify search version‘ build.sbt 推送到远程:git push 合并分支 1 更新 gaowm@gaowm-ThinkPad-T430:~/workspace/cms-service$ git checkout develop 切换到分支 ‘develop‘ 您的分支与上游分...
分类:
其他好文 时间:
2015-07-29 12:31:17
阅读次数:
206
#include
using namespace std;
class x
{
public:
x(int ii=0);
void modify();
x f8();
~x();
x& operator=(const x &x1);
private:
int i;
};
x::x(int ii/* =0 */):i(ii)
{
cout<<"x(): "<<this<<end...
分类:
编程语言 时间:
2015-07-28 13:04:46
阅读次数:
167
Resuming from
last article , I modify the bluez code to be a simple peripheral (GATT server).
Step 0.
download the last bluez .
and
Step 1.
use the parameters to configurate...
分类:
系统相关 时间:
2015-07-28 00:56:22
阅读次数:
1621
在Eclipse下配置server为Tomcat(一般为Tomcat 6.X),双击server面板中的Tomcat v6.0 Server,出现的Server Locations配置有三个选项: 1. Use workspace metadata (does not modify Tomcat ....
分类:
系统相关 时间:
2015-07-27 12:42:00
阅读次数:
125
// Filename: stl_hash_map.h
// hash_map和hash_multimap是对hashtable的简单包装, 很容易理解
/*
* Copyright (c) 1996
* Silicon Graphics Computer Systems, Inc.
*
* Permission to use, copy, modify, distribute ...
分类:
其他好文 时间:
2015-07-23 15:42:26
阅读次数:
74
删除apache的签名脚本。 #!/usr/bash
#modify Apache conf to add ServerSignature Off and ServerTokens Prod to remove Apache server signature APACHE_CFG_FILE=/etc/httpd/conf/httpd.conf
FindServerSign...
分类:
Web程序 时间:
2015-07-22 18:52:02
阅读次数:
135