码迷,mamicode.com
首页 >  
搜索关键字:quick 3.3final quickxdev player no exists    ( 8733个结果
20 Free Open Source Web Media Player Apps
free Media Players (Free MP3, Video, and Music Player ...) are cool because they let web developers and bloggers embed MP3 Players/FLV Olayers and bui...
分类:移动开发   时间:2014-05-16 08:27:41    阅读次数:509
查询锁事务及语句
if exists(select * from master.sys.sysprocesses where spid in (select blocked from master.sys.sysprocesses))begin---确定进程被锁住的其他资源select spid 进程,STATUS ...
分类:其他好文   时间:2014-05-16 06:38:48    阅读次数:329
马哥学习笔记十五——MySQL进阶之SQL语句
数据库: create database|schema [if not exists] db_name [character set =] [collate =]; alter database drop {database | schema} [if exists] db_name;表: ...
分类:数据库   时间:2014-05-15 21:22:26    阅读次数:463
SQL判断是否存在符合某条件的记录
IF EXISTS ( --判断是否存在合符条件的记录 SELECT TOP ( 1 ) 1 FROM [DCL].[SecurityUser] WHERE [U...
分类:数据库   时间:2014-05-15 20:51:00    阅读次数:336
emacs quick open and jump file (or buffer) which name is current word
Sometime, we need to open a file or buffer which name began with current word in emacs. Here I give the solution as follows. (provide 'quick-file-jump) (defun ab/quick-buffer-jump () "Quickly jum...
分类:其他好文   时间:2014-05-15 15:02:20    阅读次数:373
selenium Grid(一)
selenium grid Quick Startselenium-grid是用于设计帮助我们进行分布式测试的工具,其整个结构是由一个hub节点和若干个代理节点组成。hub用来管理各个代理节点的注册和状态信息,并且接受远程客户端代码的请求调用,然后把请求的命令再转发给代理节点来执行。1、启动Sele...
分类:其他好文   时间:2014-05-15 11:48:38    阅读次数:332
Android 关于获取摄像头帧数据解码
// 创建保存照片文件夹 private void CreateFileJPG() { File file = new File("/sdcard/image"); if (!file.exists()) { try { file.mkdirs(); } catch (Exception e) { // TODO: handle exceptio...
分类:移动开发   时间:2014-05-15 06:39:58    阅读次数:434
LeetCode-005 Longest Palindromic Substrin
【题目】 Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique longest palindromic substring. 【题意】 题意是找出字符串S中最长回文子串,S最长为1000,保证有唯一解 【思路】 原字符串用特殊字符#间隔,如下所示: #a...
分类:其他好文   时间:2014-05-15 03:31:25    阅读次数:299
Hive sql 语法解读
一、 创建表      在官方的wiki里,example是这样的: Sql代码   CREATE [EXTERNAL] TABLE [IF NOT EXISTS] table_name    [(col_name data_type [COMMENT col_comment], ...)]    [COMMENT table_comment]    [PARTITION...
分类:数据库   时间:2014-05-14 14:50:27    阅读次数:463
php 异常捕获
1 首先是try,catch getMessage();}function file_open($path){ if(!file_exists($path)) //如果文件无法找到,抛出异常对象 { throw new Exception("文件无法找到", 1); } if(!f...
分类:Web程序   时间:2014-05-14 13:19:14    阅读次数:427
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!