/*1.FLASHBACK QUERY*/
--闪回到15分钟前
select * from orders as of timestamp (systimestamp - interval ‘‘15‘‘ minute) where ......
这里可以使用DAY、SECOND、MONTH替换minute,例如:
SELECT * FR...
分类:
数据库 时间:
2014-12-19 12:27:34
阅读次数:
206
http://rgruet.free.fr/public/其他下载地址:http://cid-b50f9d5897331c44.office.live.com/browse.aspx/Android技术群共享/source code
分类:
移动开发 时间:
2014-12-19 12:00:08
阅读次数:
137
#include
#include
#include
#include
#include
#include
using namespace std;
class Node
{
public:
bool vis;
int first;
Node()
{
vis=false;
first=-1;
}
};
template
class Edge
{
public:
int fr...
分类:
其他好文 时间:
2014-12-18 22:18:34
阅读次数:
194
这是SHU数据库原理上机题目中的一道。全部题目:http://www.docin.com/p-739281393.html 代码网上有: selectxh,xm froms wherenotexists (select*fromc wherenotexists (select*fr...
分类:
其他好文 时间:
2014-12-18 20:26:25
阅读次数:
450
我们已经介绍了Canvas,在那里,已经学习了如何创建自己的View。在第7章中也使用了Canvas来为MapView标注覆盖。画布(Canvas)是图形编程中一个很普通的概念,通常由三个基本的绘图组件组成:Canvas 提供了绘图方法,可以向底层的位图绘制基本图形。Paint 也称为"刷子",Pa...
分类:
移动开发 时间:
2014-12-18 20:24:55
阅读次数:
288
--合并重复行select * from Aunion select * from B--不合并重复行select * from Aunion allselect * from B按某个字段排序--合并重复行select *from (select * from Aunion select * fr...
分类:
数据库 时间:
2014-12-18 16:46:17
阅读次数:
225
1.定义几个fragment 的subclass 如fragmentone,fragmenttwo;public class fragmentthree extends Fragment { private View view; /** * */ @Override...
分类:
移动开发 时间:
2014-12-18 16:38:33
阅读次数:
284
当我们在项目中使用java代码动态添加ViewPager时,需要注意一点:必须调用setId()方法为ViewPager设置一个ID.*.在xml布局中加入ViewPager时,我们一般会为ViewPager指定一个ID,因为当我们往这个控件中加入内容时,需要根据这个ID值来找到Viewpager....
分类:
其他好文 时间:
2014-12-18 15:06:05
阅读次数:
151
实现ViewPager无限循环:1.让ViewPager的PagerAdapter无限大且内容重复2.实现自动滚屏控制器上源码: 1 /** 2 * ViewPager无限循环实现 3 * 1、实现一个无限大的PagerAdapter 4 * 2、继承ViewPager重写setAd...
分类:
其他好文 时间:
2014-12-18 11:54:17
阅读次数:
226
这一节让我们学习下帧中继帧中继在CCNA的考试与日常的工作中都好少会有用到,但是我们还是要去认识下,它毕竟是CCNA中的一个重点。帧中继(Framerelay)也简称为FR帧中继是一种重要的广域网技术,它的主要作用是把二个或者多个远距离局域网连接起来。帧中继主要是分组交换的技术..
分类:
其他好文 时间:
2014-12-17 18:52:11
阅读次数:
258