——积累工作中用到的SQLORACLE中也是有类型的,可作为存储过程,函数等的输入输入出。下面看下创建。用法CREATE OR REPLACE TYPE 类型名称 AS OBJECT( 字段1 类型, 字段2 类型, 字段3 类型)例如CREATE OR REPLACE TYPE T_OBJ AS OBJECT( T_ID ...
分类:
数据库 时间:
2014-06-05 12:00:14
阅读次数:
357
全BADI一览
List of BAPI's
BAPI WG
Component
Function module name
Description
Description
Obj. Type
Object name
Method n...
分类:
Windows程序 时间:
2014-06-05 09:26:37
阅读次数:
3265
DFC - Documentum Foundation Classes
位于Content server和client 之间。 用来做服务端业务逻辑和客制。
BOF- Business Object Framework.
模组。 最重要的两个模组是
1. TBOs --type based objects
2. SBOs-- service based objects
3. Aspec...
分类:
其他好文 时间:
2014-06-05 09:09:06
阅读次数:
264
screen.availWidth 属性返回访问者屏幕的宽度,以像素计,减去界面特性,比如窗口任务栏。
screen.availHeight 属性返回访问者屏幕的高度,以像素计,减去界面特性,比如窗口任务栏。
-------------------------------------------完整的例子-------------------------------------------
...
分类:
Web程序 时间:
2014-06-05 07:47:36
阅读次数:
364
题意:求'X'围成的周长
思路:按理说每增加一个就是周长加4,但是要减去重复的地方,这里我是用BFS做的,如果是BFS的模板思路的话是不行的,应该要先取出再标记
#include
#include
#include
#include
#include
using namespace std;
const int MAXN = 30;
struct node {
int x,y;
...
分类:
其他好文 时间:
2014-06-05 06:23:39
阅读次数:
221
iOS—修改AFNetworking源文件可接收text/plain的方法
在使用AFNetworking的时候可能会碰到下面的错误:
{ status code: 200, headers {
"Content-Length" = 14;
"Content-Type" = "text/plain;charset=utf-8";
Date = "Thu, 2...
分类:
移动开发 时间:
2014-06-05 06:05:34
阅读次数:
265
Wrote by mutouyun. (http://darkc.at/cxx-type-list/)
群里有个朋友要实现这么一个功能:如何在编译期把一个函数类型的参数减少一个。
简单来说,就是实现下面这个模板:
remove_func_par::type; // type = void(int, long)
根据输入的编译期整数,把函数参数表里对应的参数干掉一个。
为了实现...
分类:
编程语言 时间:
2014-06-05 06:04:09
阅读次数:
273
题目如下;
Quadtrees
A quadtree is a representation format used to encode images. The fundamental ideabehind the quadtree is that any image can be split into four quadrants. Each...
分类:
其他好文 时间:
2014-06-05 04:20:06
阅读次数:
226
ContentType控制着web输出的类型,但是否区分大小写呢?
例如:
context.Response.ContentType = "application/json";
context.Response.ContentType = "application/Json";
是否相同呢?
本来运行完全没有问题的代码,前台代码:
$.ajax({ type:...
分类:
其他好文 时间:
2014-06-05 00:31:01
阅读次数:
319
sqlite>.mode columnsqlite> .headers on
分类:
数据库 时间:
2014-05-31 01:01:29
阅读次数:
300