1、视图的作用(1)表需要占用磁盘空间,而视图不需要(2)视图不能添加索引(3)视图可以简化复杂查询(4)视图可提高安全性2、视图或者修改的创建create
or replaceview 视图名 as select 语句 [with read only];create or replace view...
分类:
数据库 时间:
2014-05-05 23:43:25
阅读次数:
423
Create linux tar gz (Gzip)archive (创建压缩文件)tar -czvf
myarchive.tgz mydirectory/We use the -t option to create an linux tar archivec–
Creates a new .ta....
分类:
其他好文 时间:
2014-05-05 23:41:27
阅读次数:
403
查询数据简单的查询 1 create table stu_info 2 ( 3 sno int
not null 4 ,sname varchar(20) not null 5 ,sex varchar(2) not null 6 ...
分类:
数据库 时间:
2014-05-05 23:35:08
阅读次数:
618
session.createSQLQuery.转载对原生SQL查询执行的控制是通过SQLQuery接口进行的,通过执行Session.createSQLQuery()获取这个接口。下面来描述如何使用这个API进行查询。1.标量查询(Scalar
queries)最基本的SQL查询就是获得一个标量(数...
分类:
数据库 时间:
2014-05-05 23:26:26
阅读次数:
593
//单独动态创建一个控件; procedure TForm1.BitBtn1Click(Sender:
TObject);var myPanel : TPanel;begin myPanel :=
TPanel.Create(nil);//关于Create(nil)和Create(Self)的区别....
分类:
其他好文 时间:
2014-05-05 21:50:24
阅读次数:
291
上周讲了数据库与php连接之外,讲了两种状态管理系统,cookie和session.前一个是客户端后一个是服务器,现在状态管理大部分是用的cookie.主要的应用是用户登录。这两个新知识还是有点陌生,暂时还不了解。接触多了,就知道了怎么用了。
分类:
其他好文 时间:
2014-05-03 23:14:10
阅读次数:
314
SIP --------------------------- Session Initiation
Protocol --------------------------- create, manage and terminate sessions i...
分类:
其他好文 时间:
2014-05-03 22:49:59
阅读次数:
564
DDL :Data Definition Language (DDL) statements
are used to define the database structure or schema. Some examples:CREATE - to
create objects in the da...
分类:
数据库 时间:
2014-05-03 22:21:22
阅读次数:
410
对于PHP的session功能,始终找不到合适的答案,尤其是一些错误,还有一些没有错误的结果,最可怕的就是后者,一直为许多的初学者为难。就连有些老手,有时都被搞得莫名其妙。本文,将这些问题,做一个简单的汇总,以便大家查阅。1.错误提示Warning:
Cannot send session cook...
分类:
Web程序 时间:
2014-05-03 22:12:10
阅读次数:
421
auto root = Dictionary::create();
auto string = String::create("string element value");
root->setObject(string, "string element key");
auto array = Array::create();
...
分类:
其他好文 时间:
2014-05-03 16:27:48
阅读次数:
380