最近打算将一些软件操作过程进行屏幕录制进行视频分享,所以寻思着找一块能在MAC上使用的屏幕录制软件。google了一番,没想到MAC系统自带的QuickTime Player已经内置屏幕录像功能,而且简单好用!启动QuickTime Player新建屏幕录制如果想要在录制的过程中对鼠标点击的位置突出...
分类:
其他好文 时间:
2014-10-09 02:32:49
阅读次数:
134
概念:用当地数据库语言,写的一段业务逻辑算法,并将该算法存储在客户端 操作存储过程: CallableStatement接口==>专用于操作存储过程的接口。 SQL语句: 1)删除存储过程add_pro DROP PROCEDURE [IF EXISTS] add_pro; 2)将...
分类:
其他好文 时间:
2014-10-09 00:39:37
阅读次数:
256
1.avi格式代码片断如下:2.mpg格式代码片断如下:4.rm格式代码片断如下:5.wmv格式代码片断如下:6.wma格式放在 里面。下面是部分解释:7.Windows Media Player 系列(不同面板样式)综合型:网页播放器的参数含义 Windows Media Player 网页播放....
分类:
Web程序 时间:
2014-10-09 00:25:17
阅读次数:
268
Release1.0 http://qt-project.org/wiki/developer-guides
Qt Quick Application Developer Guide for Desktop
这个教程的目的是让你熟悉使用QtQuick构建QML程序的最佳编程实践方法; 先决条件: 对QML有相当的理解, 相关阅读: ; 本教程会涉及QML开发最佳实践的各个方面, ...
分类:
其他好文 时间:
2014-10-08 17:55:47
阅读次数:
393
对以下对象判断是否存在:database、table、proc、触发器、临时表、索引。1、判断数据库:if exists (select*fromsys.databaseswherename=’数据库名’)dropdatabase[数据库名] 2、判断表:Sql代码if exists (select...
分类:
数据库 时间:
2014-10-08 17:28:45
阅读次数:
228
Volley主页 https://android.googlesource.com/platform/frameworks/volley
http://www.youtube.com/watch?v=yhv8l9F44qo&feature=player_embedded
1. 什么是Volley
Google I/O 2013上,Volley发布了volley。在这之前...
分类:
移动开发 时间:
2014-10-08 13:00:25
阅读次数:
324
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-10-08 00:05:04
阅读次数:
221
Problem EGame of SumInput File:e.inOutput:Standard OutputThis is a two player game. Initially there areninteger numbers in an array and playersAandBge...
分类:
其他好文 时间:
2014-10-07 23:09:04
阅读次数:
298
优化项 1、 low_priority 当没有连接文章表时才进行删除操作。 delete low_priority from T;优化项 2、 quick 当删除行时并不删除行的索引、如果再次插入这一行,或是也它相近的行时、就可以重用索引。 delete qui...
分类:
数据库 时间:
2014-10-07 20:24:33
阅读次数:
327
mysql中的in语句是把外表和内表作hash 连接,而exists语句是对外表作loop循环,每次loop循环再对内表进行查询。一直大家都认为exists比in语句的效率要高,这种说法其实是不准确的。这个是要区分环境的。
如果查询的两个表大小相当,那么用in和exists差别不大。
如果两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用in:
...
分类:
数据库 时间:
2014-10-07 14:38:03
阅读次数:
202