目录1)基本2)数学函数3)rownum4)分页5)时间处理6)字符函数7)to_number8)聚合函数9)学生选课10)图书馆借阅基本--新建表:create
table table1( id varchar(300) primary key, name varchar(200) not nul...
分类:
数据库 时间:
2014-05-12 16:11:47
阅读次数:
590
创建分支svn cp -m "create branch"
http://svn_server/xxx_repository/trunk
http://svn_server/xxx_repository/branches/br_feature001获得分支svn co
http://svn_serv...
分类:
其他好文 时间:
2014-05-06 09:07:08
阅读次数:
362
epoll函数#include int epoll_create(int size)int
epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)int epoll_wait(int
epfd,struct epoll_event...
分类:
其他好文 时间:
2014-05-06 00:21:30
阅读次数:
519
技术要点一个存储过程包括名字、参数列表,以及可以包括很多SQL语句的SQL语句集。下面为一个存储过程的定义过程:create procedure
proc_name (in parameter integer)begindeclare variable varchar(20);if paramete...
分类:
数据库 时间:
2014-05-06 00:04:50
阅读次数:
433
rsync客户端+inotify-tools1.1.1.12rsync服务器1.1.1.111.1.1.12配置[root@slave3wwwroot]#cat/etc/rsyncd-web.sh
#!/bin/bash
host1=1.1.1.11
src=/web/wwwroot/
dst1=web1
/usr/bin/inotifywait-mrq--timefmt‘%d/%m/%y%H:%M‘--format‘%T%w%f%e‘-emodify,delete,create,attrib..
分类:
其他好文 时间:
2014-05-03 01:08:22
阅读次数:
426
异常一:Can‘tcreatehandlerinsidethreadthathasnotcalledLooper.prepare()这个异常是因为非主线程中默认没有创建对象。所以就要看看该方法所在的线程是不是主线程一看。真的不是。于是取消newThread().start();搞定。问题1:@OverridepublicvoidonClick(DialogInterfacedialog,i..
分类:
其他好文 时间:
2014-05-03 00:48:54
阅读次数:
276
输入:表名、每页显示的记录数、当前页输出:总记录数、总页数、结果集--首先,创建一个包,定义游标类型CREATE OR REPLACE PACKAGE
fenye_package ISTYPE fenye_cursor IS REF CURSOR;END fenye_package; --输入:表名...
分类:
数据库 时间:
2014-05-02 22:02:04
阅读次数:
411
.h
#include "cocos-ext.h"
#include "ui/CocosGUI.h"
#include "cocostudio/CocoStudio.h"
USING_NS_CC;
USING_NS_CC_EXT;
using namespace ui;
.cpp
auto background = LayerColor::create(Color4B(200,200...
分类:
其他好文 时间:
2014-05-02 21:27:20
阅读次数:
367
1.如何在TreeList中加图标?[问题提出]请问treeview控件和treectrl控件的用法有何不同呢?向如何imagelist控件中加图象呀?[解决方法]1)HICON
hicon[8];m_imageList.Create(16,16,0,8,8);hicon[0]=AfxGetApp(...
分类:
其他好文 时间:
2014-05-02 13:24:24
阅读次数:
274
sql%通配符可以匹配任意字符包括空字符串_通配符表示一个字符不包含空数据库命名字母数字下划线可以以数字开头但是不要用系统保留关键字尽量使用小写linux严格区分大小写名字比较长的时候使用_下划线做连接查看数据库创建showcreatedatabasedb_name查看建表语句showcreatetable..
分类:
数据库 时间:
2014-05-02 08:08:04
阅读次数:
377