一、Login登陆验证步骤:
1、赋值,用$_POST将id和password传递给loginProcess.php登陆验证页面。
2、建立数据库连接 $conn=mysql_connect($host,$username,$password);
3、选择数据库 mysql_select_db(empmanage);
4、定义sql语句 $sql=”select passwo...
分类:
Web程序 时间:
2014-08-27 18:41:38
阅读次数:
197
正常还原的时候报错:MicrosoftSQL-DMO(ODBCSQLState:42000)---------------------------试图扩大物理文件时,MODIFYFILE遇到操作系统错误112(磁盘空间不足。)。未能创建一个或多个文件。请考虑使用WITHMOVE选项来标识有效位置。R...
分类:
数据库 时间:
2014-08-25 01:10:43
阅读次数:
685
如果报错....for column 'object_repr' at row 1.就找到此列所在表为django_admin_log,然后插入:ALTER TABLE django_admin_log MODIFY COLUMN object_repr VARCHAR(255) CHARACTER...
分类:
其他好文 时间:
2014-08-24 23:36:43
阅读次数:
340
改变数据表的结构: alter table tb_name action,[action,action](使用alter table 之前,需要查看数据表的当前定义,需要执行show create table 语句) alter table tb_name modify columns+数...
分类:
数据库 时间:
2014-08-22 21:05:29
阅读次数:
243
1 Depart Process: 2 1. Grep xref and trailer binary position in file. 3 2. Dump xref table and trailer part. 4 3. Calculate every object binary o...
分类:
其他好文 时间:
2014-08-22 19:36:19
阅读次数:
176
1.某字段更新 自增 1 update table set a=a+12.修改某一字段的数据类型alter table "tablename" modify "column" "type"3.更改字段名alter table "tablename" change column col_old col...
分类:
数据库 时间:
2014-08-22 12:49:58
阅读次数:
270
package mainimport "fmt"func modify(array [10]int) { array[0] = 10 fmt.Println("In modify(), array values: ", array)}func main() { array := [...
分类:
其他好文 时间:
2014-08-21 14:33:45
阅读次数:
157
Optional. Configure Search Path To ensure that the downloaded binaries are in your PATH, you can modify your PATH and/or create symbolic links to the ...
分类:
数据库 时间:
2014-08-19 12:45:34
阅读次数:
272
A:add,新增C:conflict,冲突D:delete,删除M:modify,本地已经修改G:modify and merGed,本地文件修改并且和服务器的进行合并U:update,从服务器更新R:replace,从服务器替换I:ignored,忽略
分类:
其他好文 时间:
2014-08-19 10:37:13
阅读次数:
540
批量表产品名称过长导致被截断的情况,是由于产品名称超出了数据库表中字段设置的最大长度,下面通过修改数据库表字段长度来避免此类情况发生:ALTER TABLE categories MODIFY categories_image varchar(256) ;ALTER TABLE categories...
分类:
其他好文 时间:
2014-08-18 18:01:32
阅读次数:
265