码迷,mamicode.com
首页 >  
搜索关键字:ora-04031 obj stat memo version count    ( 69204个结果
No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a
No provisioned iOS devices are available with a compatible iOS version. Connect an iOS device with a recent enough version of iOS to run your application or choose an iOS simulator as the destination....
分类:移动开发   时间:2014-06-07 01:56:57    阅读次数:361
Eclipse SDK构建J2EE开发环境
嫌弃官方Java EE Developers 笨重的兄弟可以自己搞个J2EE开发环境! 1、首先去Eclipse官网下载Eclipse IDE 我使用的是:Eclipse IDE for Java Developers Version: Kepler Service Release 2 2、下载之后配置Eclipse和JRE关联参照:Eclipse使用jre的原理与配置 我使用的是:jre目录直接拷贝到eclipse目录下面...
分类:系统相关   时间:2014-06-07 01:13:20    阅读次数:307
ORACLE—002:Create之创建类型
——积累工作中用到的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
python 装饰器与AOP
无高见 1.缓存 from functools import wraps lineseq = '==' * 20 def memo( func ): cache = {} @wraps( func ) def wrapper( *args ): result = cache.get( args ) if resul...
分类:编程语言   时间:2014-06-05 11:07:06    阅读次数:324
赵雅智_AndroidManifest.xml配置文件详解
AndroidManifest.xml配置文件对于Android应用开发来说是非常重要的基础知识,本文旨在总结该配置文件中重点的用法,以便日后查阅。下面是一个标准的AndroidManifest.xml文件样例。 [html] view plaincopy xml version="1.0" encoding="utf-8"?...
分类:移动开发   时间:2014-06-05 10:46:40    阅读次数:281
js 获取浏览器信息
var txt = "Browser CodeName: " + navigator.appCodeName + "";     txt+= "Browser Name: " + navigator.appName + "";     txt+= "Browser Version: " + navigator.appVersion + "";     txt+= "Cookies Enabl...
分类:Web程序   时间:2014-06-05 10:09:31    阅读次数:270
SAP BAPI一览 史上最全
全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
用二叉链表实现二叉查找树(二)
/* 二叉查找树的链表实现: 以及三种遍历方式,删除节点; 查找节点; author:天下无双 Date:2014-5-28 Version:3.0 */ #include #include typedef int T;//树内节点的数据类型 using namespace std; class BiTree { private: struct BiNode{ T data;...
分类:其他好文   时间:2014-06-05 09:12:12    阅读次数:217
二叉树的链表实现
直接上代码: /* 二叉树的链表实现: 以及三种遍历方式: author:天下无双 Date:2014-5-28 Version:2.0 */ #include #include typedef int T;//树内节点的数据类型 using namespace std; class BiTree { private: struct BiNode{ T data; BiN...
分类:其他好文   时间:2014-06-05 06:30:49    阅读次数:273
水仙花
类似 153=1^3+5^3+3^3 这样的数就叫做水仙花数#include int main(void){ int bw,sw,gw; int i; int count=0; for(i=100;i<=999;i++){ bw=i/100; //取出百位上的数 sw=i%100/10;/...
分类:其他好文   时间:2014-05-31 14:22:33    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!