码迷,mamicode.com
首页 >  
搜索关键字:create profile    ( 35504个结果
svn常用命令与分支操作
创建分支svn cp -m "create branch" http://svn_server/xxx_repository/trunk http://svn_server/xxx_repository/branches/br_feature001获得分支svn co http://svn_serv...
分类:其他好文   时间:2014-05-06 09:07:08    阅读次数:362
epoll函数及三种I/O复用函数的对比
epoll函数#include int epoll_create(int size)int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)int epoll_wait(int epfd,struct epoll_event...
分类:其他好文   时间:2014-05-06 00:21:30    阅读次数:519
mysql 存储过程实例
技术要点一个存储过程包括名字、参数列表,以及可以包括很多SQL语句的SQL语句集。下面为一个存储过程的定义过程:create procedure proc_name (in parameter integer)begindeclare variable varchar(20);if paramete...
分类:数据库   时间:2014-05-06 00:04:50    阅读次数:433
Oracle视图
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
TAR 命令
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
SQL Server 基础 03 查询数据基础
查询数据简单的查询 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
动态创建Ⅰ
//单独动态创建一个控件; procedure TForm1.BitBtn1Click(Sender: TObject);var myPanel : TPanel;begin myPanel := TPanel.Create(nil);//关于Create(nil)和Create(Self)的区别....
分类:其他好文   时间:2014-05-05 21:50:24    阅读次数:291
ARM-Linux开机自启动设置-ok6410开发板
要在开发板上的Linux开机启动自己的程序,想着简单,却改了很久,绕了一圈下来确实很简单,只是自己一开始太过迂腐吧! 如果不想看完全文,这一段应该就够了,从我使用的开发板的角度讲,一般只要在/etc/init.d/rcS中加入你的程序或者脚本命令就可以实现开机自动运行;想在超级终端输入回车,登录后执行,则可以在/etc/profile中加入命令;如果想去掉每次开机完后的“Please press...
分类:系统相关   时间:2014-05-05 13:04:14    阅读次数:525
[SIP00]SIP 概念总结
SIP --------------------------- Session Initiation Protocol --------------------------- create, manage and terminate sessions i...
分类:其他好文   时间:2014-05-03 22:49:59    阅读次数:564
Cocos2d3.0 制作PList文件
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!