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
查看表的最后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...
今天用myEclipse导出项目为jar包,总提示这个问题,具体错误详情:
想尽了各种办法,每一个都试了下,终于解决。下面分享我的解决过程(项目不是我做的)
1、选中项目右键=>properties=>Java Compiler=>JDK Compliance level栏换一个JDK,最好版本换成1.6以上的
2、正常打包流程,一步步点,如果...
分类:
编程语言 时间:
2015-01-23 16:22:59
阅读次数:
490