假设现在有表books:1.复制表结构1.1 含有主键等信息的完整表结构CREATE table 新表名 LIKE book;1.2 只有表结构,没有主键等信息create table 新表名 select * from books;或create table 新表名 as (select * fr...
分类:
数据库 时间:
2014-09-22 19:02:13
阅读次数:
232
$criteria=newCDbCriteria; $criteria->addCondition("id=:id","and"); $criteria->params[‘:id‘]=$_POST[‘book_id‘]; $criteria->order="remove_timedesc"; $comments=BooksComments::model()->findAllByAttributes( array(‘book_id‘=>$_REQ..
分类:
其他好文 时间:
2014-09-21 20:18:21
阅读次数:
196
于是我想要按照自己的理解把这个过程尽可能详细的剖析出来,在行文上我打算按照时间线的方式,这样又好写,也好读,好理解。这应该会写成一个系列,刚好最近开始在看很多人都在推荐的热门书,http 权威指南,这本,http://book.douban.com/subject/10746113/,跟我想要说的差不多的,于是就一边当作是读书笔记吧
那我们就开始了,故事其实并不是从在浏览器的地址栏输入一个网址,或者我们抓着鼠标点击一个链接开始,事情的开端要追溯到服务器启动监听服务的时候,在某个未知的时刻,一台机房里普普...
分类:
Web程序 时间:
2014-09-21 19:47:31
阅读次数:
257
1、创建类 1 class Book(object):2 def __init__(self,b): #定义构造器3 self.name=b4 print self.name5 def updatename(self,a):6 s...
分类:
编程语言 时间:
2014-09-19 20:59:15
阅读次数:
255
Abstract. Although polynomials offer many advantages, there exist a number of important curve and surface types which cannot be represented precisely ...
分类:
其他好文 时间:
2014-09-19 20:52:26
阅读次数:
405
tengine.taobao.org/book/chapter_03.html程序解析:1,核心是定义三个结构体,分别是a,ngx_command_t(模块的配置结构):由于定义了自己的配置结构体typedef struct{ngx_str_t hello_string;ngx_int_t hell...
分类:
其他好文 时间:
2014-09-19 11:39:55
阅读次数:
304
“LINUX就是这个范”有一章专门介绍了Linux的构建,过程详细,很有意思。结合这方面的资料简要汇集一下LFS这个站点提供了从源代码构建一个Linux的详细步骤书http://archive.linuxfromscratch.org/lfs-museum/stable/LFS-BOOK-7.5.p...
分类:
系统相关 时间:
2014-09-18 16:22:14
阅读次数:
246
【RampTexture】 RampTexture(渐变纹理),可以是1D/2D纹理. This allows you to accentuate the surface's colors to fake the effects of more bounce light or a more ad.....
分类:
其他好文 时间:
2014-09-18 13:04:43
阅读次数:
250
【Half Lambert】 Half Lambert was a technique created by Valve as a way of getting the lighting to show the surface of an object in low-light areas. It....
分类:
其他好文 时间:
2014-09-18 13:03:03
阅读次数:
200
【SurfaceShader自定义光照】1、在pragma中添加自定义光照函数名: #pragma surface surf BasicDiffuse2、实现自定义光照函数。下面就是Lambert光照模型。 _LightColor0是Unity提供的变量。3、有3种类型的光照函数可以选择: ...
分类:
其他好文 时间:
2014-09-17 20:13:42
阅读次数:
271