码迷,mamicode.com
首页 >  
搜索关键字:values    ( 8569个结果
Android - 插入数据库(SQLite)错误
插入数据库(SQLite)错误本文地址: http://blog.csdn.net/caroline_wendyError: android.database.sqlite.SQLiteException: no such table: step (code 1): , while compiling: INSERT INTO step(duration,date,counter) VALUES ...
分类:移动开发   时间:2014-11-22 23:12:30    阅读次数:223
安卓设置添加项
1.反编译settings.apk2.在values/strings.xml里添加代码: Advanced Settings Launcher3.在values-zh-rcn/strings.xml里添加代码: 高级设置 启动器4.然后在drawable-hdpi里放2张图片:ic_laun...
分类:移动开发   时间:2014-11-22 23:03:25    阅读次数:675
MTK手机最低亮度值修改教程,有效降低亮度[转]
感谢halflover的教程 反编译framework-res.apk 打开\framework-res\res\values\integers.xml然后找到20最低亮度245最高亮度60开机默认亮度20变暗值复制代码手动修改最低亮度值即可,改为0,再反编译。替换系统文件,记得修改权限。(最高亮....
分类:移动开发   时间:2014-11-22 23:03:18    阅读次数:405
sqlserver常用基本预语法
use testselect * from sysobjects where xtype='u'select * from userstruncate table users --删除所有记录,性能高于deleteinsert into users values(1,'admin')goinsert...
分类:数据库   时间:2014-11-22 16:00:40    阅读次数:380
Android 在frameworks中修改Setting中的默认值
在frameworks中跟Setting默认值相关的几个文件 /frameworks/base/packages/SettingsProvider/res/values/defaults.xml /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java 在...
分类:移动开发   时间:2014-11-22 14:42:36    阅读次数:511
Binary Tree Postorder Traversal
Given a binary tree, return thepostordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[3,2,1].C+...
分类:其他好文   时间:2014-11-22 09:12:05    阅读次数:173
【Leetcode】【Easy】Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他好文   时间:2014-11-22 00:43:18    阅读次数:130
Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total number...
分类:其他好文   时间:2014-11-21 20:24:19    阅读次数:190
MYSQL 的数据读取方式
例子:create table T(X bit(8));insert into T (X) values(b'11111111');select X from T;这个时候会发现这个X 是乱码的,不要当心真正的数据是已经存入了的。只是你的打开方式不对。如果要用二进制的方式来看的话可以这样select...
分类:数据库   时间:2014-11-21 14:09:27    阅读次数:131
modsecookie
Cookie parsing added添加cookie解析现在你可以使用新的可选的过滤器变量(COOKIE_name, COOKIE_NAMES, COOKIE_VALUES)分析cookies。虽然之前你就可以查看cookie(cookie就是HTTP头),但是功能有限。现在ModSecurit...
分类:其他好文   时间:2014-11-21 12:21:12    阅读次数:265
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!