/*
* map.cpp
*
* Created on: 2014-8-20
* Author: dengxiaobing
*/
#include
#include
#include
#include
/*1. 定义一个函数指针*/
typedef void * (* pCreateFun)() ;
/*2. 定义一个pair*/
typedef std::pai...
分类:
其他好文 时间:
2014-08-20 16:23:52
阅读次数:
205
1.数据库操纵语言
DML语句实在下面的时候执行
向表添加新行
更新表现有的行
从表删除现有行
一个事务处理是由一系列的DML语句逻辑组成
A.insert 每次插入一行数据 字符和日期的需要单引号引起来,日期的插入需要to_date()处理
SQL> insert into dept values(54,'',null); //插入空值
1 row created.
SQL...
分类:
数据库 时间:
2014-08-20 14:09:32
阅读次数:
252
【转自】:http://www.cocoachina.com/bbs/read.php?tid=209290 工具介绍,json文件获得方法,请参考原帖 MyBodyParser.h 1 // 2 // MyBodyParser.h 3 // 4 // Created by Jason Xu...
分类:
Web程序 时间:
2014-08-20 10:23:56
阅读次数:
242
资料1
-- Created on 2014/8/20
declare
-- Local variables here
i integer;
begin
i := 12;
-- Test statements here
DBMS_OUTPUT.put_line(i);
end;
资料2
declare
cursor s is
...
分类:
数据库 时间:
2014-08-20 09:20:36
阅读次数:
228
1、ORA-00942: table or view does not exist指的你要操作的表尚未存在,需要先create出来先。2、ORA-00922: missing or invalid option指的是有语法错误。遗漏了分号什么的3、Warning: Procedure created...
分类:
数据库 时间:
2014-08-20 01:13:16
阅读次数:
539
http://blog.sina.com.cn/s/blog_474928c90100x871.htmlpublic class Ex04_1Activity extends Activity { EditText editText;TextView textView; @Override pu.....
相当于VC6里的.dsw和.dsp.Net解决方案下 .sln文件和.suo文件的解释:When a Web site is created, a solution file (.sln) and a hidden solution user options file (.suo) are crea...
分类:
其他好文 时间:
2014-08-19 09:21:33
阅读次数:
170
---------------------------------------------------------------------------------- /** -- ?* Created by Administrator on 14-8-16. -- ?*模拟Ajax把数据从数据库中调用出来/后台执行此代码如下/ -- ?*...
分类:
其他好文 时间:
2014-08-19 01:04:03
阅读次数:
255
//// AppDelegate.m// CustomTabBar-0818//// Created by apple on 14-8-18.// Copyright (c) 2014年 apple. All rights reserved.//#import "AppDelegate.h"...
分类:
其他好文 时间:
2014-08-18 23:28:33
阅读次数:
296
最终效果图:
代码片段:
DealListController继承自UICollectionViewController
self.view已经包含了一个UICollectionView
并且数据源和代理已经是当前控制器self
//
// DealListController.m
// 帅哥_团购
//
// Created by beyond on 14-8-1...
分类:
移动开发 时间:
2014-08-18 16:22:42
阅读次数:
183