上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 61 下一页
  2014年1月17日
摘要: 优先级运算符名称或含义使用形式结合方向说明1[]数组下标数组名[常量表达式]左到右()圆括号(表达式)/函数名(形参表).成员选择(对象)对象.成员名->成员选择(指针)对象指针->成员名2-负号运算符-表达式右到左单目运算符(类型)强制类型转换(数据类型)表达式++自增运算符++变量名/变量名++单目运算符--自减运算符--变量名/变量名--单目运算符*取值运算符*指针变量单目运算符&取地址运算符&变量名单目运算符!逻辑非运算符!表达式单目运算符~按位取反运算符~表达式单目运算符sizeof长度运算符sizeof(表达式)3/除表达式/表达式左到右双目运算符*乘表 阅读全文
posted @ 2014-01-17 00:11 heidsoft 阅读(608) 评论(0) 推荐(0) 编辑
  2014年1月16日
摘要: 指针理解一、 指针理解二、 阅读全文
posted @ 2014-01-16 23:57 heidsoft 阅读(399) 评论(0) 推荐(0) 编辑
摘要: As part of switching toApache Mavenfor building CloudStack, the .classpath and .project files used by Eclipse were removed. This page describes how to get CloudStack loaded into an Eclipse workspace. For more details on the actual build process with maven seeHow to build CloudStackUse a Recent Eclip 阅读全文
posted @ 2014-01-16 18:09 heidsoft 阅读(429) 评论(0) 推荐(0) 编辑
摘要: contextConfigLocation WEB-INF/beans.xml org.springframework.web.context.ContextLoaderListener org.springframework.web.util.Log4jConfigListener CXF Servlet CXFServlet org.apache.cxf.transport.servlet.CXFServlet 1 CXFServlet /rest/* ... 阅读全文
posted @ 2014-01-16 17:42 heidsoft 阅读(285) 评论(0) 推荐(0) 编辑
摘要: CloudStackContextLoaderListener/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache.. 阅读全文
posted @ 2014-01-16 17:29 heidsoft 阅读(634) 评论(0) 推荐(0) 编辑
摘要: org.apache.cloudstack.framework 阅读全文
posted @ 2014-01-16 17:13 heidsoft 阅读(459) 评论(0) 推荐(0) 编辑
摘要: Oracle权限设置一、权限分类:系统权限:系统规定用户使用数据库的权限。(系统权限是对用户而言)。实体权限:某种权限用户对其它用户的表或视图的存取权限。(是针对表或视图而言的)。二、系统权限管理:1、系统权限分类:DBA:拥有全部特权,是系统最高权限,只有DBA才可以创建数据库结构。RESOURCE:拥有Resource权限的用户只可以创建实体,不可以创建数据库结构。CONNECT:拥有Connect权限的用户只可以登录Oracle,不可以创建实体,不可以创建数据库结构。对于普通用户:授予connect, resource权限。对于DBA管理用户:授予connect,resource, db 阅读全文
posted @ 2014-01-16 15:38 heidsoft 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 合并分支用来维护独立的开发支线,在一些阶段,你可能需要将分支上的修改合并到主干,或者相反。It is important to understand how branching and merging works in Subversion before you start using it, as it can become quite complex. It is highly recommended that you read the chapterBranching and Mergingin the Subversion book, which gives a full descri 阅读全文
posted @ 2014-01-16 15:32 heidsoft 阅读(371) 评论(0) 推荐(0) 编辑
摘要: --创建临时表空间 --//Linux下的文件系统 create temporary tablespace cloudv2_temp tempfile '/home/oracle/app/oracle/oradata/cloudv2/cloudv2_temp01.dbf' size 64m autoextend on next 64m maxsize 2048m extent management local; --创建数据表空间 --//Linux下的文件系统 create tablespace cloudv2_data logging datafile '/home 阅读全文
posted @ 2014-01-16 13:35 heidsoft 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1、语法:同义词 (SYNONMY) CREATE SYNONYM同义词名FOR 表名; CREATE SYNONYM同义词名FOR 表名@数据库链接名; Create synonym synonym_name for object_name. 同义词用途很广如医院触摸屏可能可能要访问HIS系统相关表,这时候可能要创建部分视图来供查询。 1、创建查询视图用户create user touchquery identified by password; 2、赋予相关权限grant select (any ) on view_name to touchquery; 3、创建同义词 Creat... 阅读全文
posted @ 2014-01-16 12:02 heidsoft 阅读(636) 评论(0) 推荐(0) 编辑
上一页 1 ··· 47 48 49 50 51 52 53 54 55 ··· 61 下一页