码迷,mamicode.com
首页 >  
搜索关键字:name    ( 94827个结果
利用管道迁移数据
磁盘空间不足的情况下,利用命名或者匿名管道迁移和导入数据;需要注意命名管道的权限问题。 0. Name PIP 0 [pg@h1 ~]$ psql gtlions -ac "select 't3' tab,count(*) from t3 union all select 't4',count(*) from t4;" select 't3' tab,count(*) from t3 uni...
分类:其他好文   时间:2014-11-06 11:09:31    阅读次数:206
HDU 1010 深搜+减枝
HDU 1010 /************************************************************************* > File Name: HDU1010.cpp > Author:yuan > Mail: > Created Time: 2014年11月05日 星期三 22时22分56秒 *******************...
分类:其他好文   时间:2014-11-06 09:23:24    阅读次数:196
【黑金教程笔记之003】【建模篇】【Lab 02 闪耀灯和流水灯】—笔记
(1) 扫描频率和闪耀频率?模块:/****************************************module name:flash_modulefunction:flash a led at 10Hzby yf.x2014-11-4***************/module f...
分类:其他好文   时间:2014-11-06 09:18:27    阅读次数:245
linux中的命令
1:cat-s:压缩空白行;移除空白行cattest.txt|tr‘\n‘‘‘;cat-T:将制表符显示为^I;cat-n:显示行号2:find:-name:根据文件名或正则表达式匹配;find.\(-name"*.txt"-o-name"*.py"\)-print-path:根据路径匹配;-maxdepath和-mindepath基于目录深度搜索;-typef(d\c\l等)文..
分类:系统相关   时间:2014-11-06 02:17:43    阅读次数:237
用property声明属性时,strong,copy,weak的一般用法
//一般情况下,在声明字符串对象的时候使用 copy//UI对象使用weak//其他对象使用strong@property(nonatomic,copy)NSString *name;@property(nonatomic,weak)UIImage *image;@property(nonatomi...
分类:其他好文   时间:2014-11-06 00:41:24    阅读次数:124
python file operations
python_files_operationsfiles, file objectsopen(name [, mode [, bufsize]])eg:file = "data.txt"f = open(file, 'r')f = open(file, 'w')'r':read'w':write'a...
分类:编程语言   时间:2014-11-06 00:31:29    阅读次数:271
C语言基础07
结构体与函数的不同就是函数是由相同数据类型的变量组成,结构中可以有不同数据类型组合。struct 结构名称 { 数据类型 成员; // 注意必须是以分号隔开; ...}//创建一个构造体struct student { int age; char name[45]; char gend...
分类:编程语言   时间:2014-11-05 23:04:40    阅读次数:288
关于hibernate实体类
给的数据库模型是sql2005的,然后在powerdesigner把数据库模型改成mysql的去建实体,建不上,貌似好多东西要改。 要做以下几件事: 1,加上uuid的东西,生成唯一id,类型是String,Java中实体类主键上加 @GenericGenerator(name="syst...
分类:Web程序   时间:2014-11-05 23:03:01    阅读次数:196
mysql load操作
转载自http://www.cnblogs.com/ggjucheng/archive/2012/11/05/2755683.htmlload的语法LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE 'file_name.txt' [REP...
分类:数据库   时间:2014-11-05 22:59:18    阅读次数:342
MySQL之聚合函数
1.AVG() 用法:求平均值 举例: mysql> select * from t1; +----+------+----------+---------+-------+-------+ | id | name | password | test001 | test3 | test4 | +--...
分类:数据库   时间:2014-11-05 22:49:05    阅读次数:292
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!