Blogger Information
Blog 30
fans 0
comment 0
visits 20055
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10月9日作业,抽象类和CRUD接口实现
人生就像过山车的博客
Original
724 people have browsed it

老师好, 10月9日作业如下,抽象类以及CRUD接口的实现,除了朱老师的范例之外,额外增加了alter方法,总结下老师讲的,基本上可以理解为,SQL语句关键字使用字符串,对于操作的对象诸如表名,字段名等,可以使用变量或者占位符实现,如果出现页面错误,不是因为远程服务器数据库里,没有相应的表引起的,而是因为数据库密码不同引起的。点击页面底部的php中文网图片可以返回我的博客页面,老师辛苦了,感恩感恩。 最近事很多,比较忙,而且由于纽约进入了冬令时,从而时差变为了13小时,以至于无法第一时间看直播了,但是还是会忙里偷闲看录播以及补写作业的,多谢多谢

10月9日作业,点击查看

                 //alter方法实现
                 function alter($operator,$name,$datatype=''){

                 $sql = 'ALTER TABLE '.$this->table.' '.$operator.' '.$name.' '.$datatype;                 //die($sql);
                 $stmt = $this->pdo->prepare($sql);
                 $stmt->execute();
                 echo '增加指定字段成功!';              }
                 
                 //测试alter方法
                 
                 $operator = 'ADD';
                 $name = 'remark';
                 $datatype = 'varchar(200)';
                 $db->alter($operator,$name,$datatype);


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments