The information below comes from a number of sources, including my own experiments with the Android IPC and some disparate internet sources.
The overall architecture of the Android IPC system is sh...
分类:
其他好文 时间:
2015-01-27 18:32:24
阅读次数:
217
1. Oracleselect*fromuser_tableswheretable_name='表名称'记得表名大写。2. mysqlSELECTtable_nameFROM`INFORMATION_SCHEMA`.`TABLES`WHEREtable_name='表名称'3. Oracle导出表数...
分类:
数据库 时间:
2015-01-27 17:49:56
阅读次数:
193
第五章 元数据查询 查询数据库本身信息 表结构 索引等5.1 查询test库下的所有表信息MYSQLSELECT * from information_schema.`TABLES` WHERE TABLE_SCHEMA = 'test';ORACLEselect table_name from a...
分类:
数据库 时间:
2015-01-27 10:50:16
阅读次数:
241
问题描述:Android Studio 是一个全新的 Android 开发环境,基于IntelliJ IDEA. 类似 Eclipse ADT,Android Studio 提供了集成的 Android 开发工具用于开发和调试.Android Studio安装完成后,如果直接启动,Android S...
分类:
移动开发 时间:
2015-01-26 22:25:46
阅读次数:
454
本来要写一个文档,中间用程序判断某列是否存在,不存在的话则添加,存在就不处理直接显示一个结果就可以,写的程序如下:if exists ( select * from information_schema.columns where table_name = "flow_process" and column_name ="X_test2" AND table_schema = 'TD_OA' ...
分类:
数据库 时间:
2015-01-26 19:24:16
阅读次数:
163
介绍
现在的分布式系统大有越来越往分布式多媒体系统的应用上走的趋势了。多媒体的应用本质上是对于持续数据流的一种消耗。包括音频以及视频,音频是由一个个audio Sample组成,而视频则是video frame组成。有时因为网络条件的原因,他是可以允许部分的延时的,延时造成的丢包率在一定比率上也是可以接受的。在多媒体应用中,很在意的quality of service服务质量的要求,因此他这里需...
分类:
其他好文 时间:
2015-01-26 17:18:13
阅读次数:
190
查看表的最后mysql修改时间 SELECT TABLE_NAME,UPDATE_TIME FROM information_schema.tables where TABLE_SCHEMA='database_name'; 通过查看数据库中表的最后更新时间。
分类:
数据库 时间:
2015-01-26 16:38:33
阅读次数:
337
debug eap through debug he-module subslot periodicdebug eap : to display information about Extensible Authentication Protocol(EAP)(in privileged EXEC ...
分类:
移动开发 时间:
2015-01-26 13:30:24
阅读次数:
233
Create/Drop/Grant/Revoke Roles and PrivilegesHive Default Authorization - Legacy Modehas information about these DDL statements:CREATE ROLEGRANT ROLER...
分类:
其他好文 时间:
2015-01-24 22:39:12
阅读次数:
445
在windows下创建子进程较常用到的API就是CreateProcess,可以通过以下的方式启动一个新进程: STARTUPINFO si = {0}; PROCESS_INFORMATION pi = {0}; si.cb = sizeof(STARTUPINFO); //结构体大小 Ge...