View Single Post
Old 04-09-2017, 17:02   #12 (permalink)
maplegsm
No Life Poster
 
maplegsm's Avatar
 
Join Date: Nov 2006
Location: Bulgaria/China
Age: 58
Posts: 4,312
Member: 391664
Status: Offline
Sonork: Python
Thanks Meter: 1,063
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\hp>cd..

C:\Users>cd..

C:\>cd..

C:\>adb devices
List of devices attached
TA1040AZTQ device


C:\>adb shell content insert --url content: // settings / secure --bind
usage: adb shell content [subcommand] [options]

usage: adb shell content insert --uri <URI> [--user <USER_ID>] --bind <BINDING>
[--bind <BINDING>...]
<URI> a content provider URI.
<BINDING> binds a typed value to a column and is formatted:
<COLUMN_NAME>:<TYPE>:<COLUMN_VALUE> where:
<TYPE> specifies data type such as:
b - boolean, s - string, i - integer, l - long, f - float, d - double
Note: Omit the value for passing an empty string, e.g column:s:
Example:
# Add "new_setting" secure setting with value "new_value".
adb shell content insert --uri content://settings/secure --bind name:s:new_set
ting --bind value:s:new_value

usage: adb shell content update --uri <URI> [--user <USER_ID>] [--where <WHERE>]

<WHERE> is a SQL style where clause in quotes (You have to escape single quote
s - see example below).
Example:
# Change "new_setting" secure setting to "newer_value".
adb shell content update --uri content://settings/secure --bind value:s:newer_
value --where "name='new_setting'"

usage: adb shell content delete --uri <URI> [--user <USER_ID>] --bind <BINDING>
[--bind <BINDING>...] [--where <WHERE>]
Example:
# Remove "new_setting" secure setting.
adb shell content delete --uri content://settings/secure --where "name='new_se
tting'"

usage: adb shell content query --uri <URI> [--user <USER_ID>] [--projection <PRO
JECTION>] [--where <WHERE>] [--sort <SORT_ORDER>]
<PROJECTION> is a list of colon separated column names and is formatted:
<COLUMN_NAME>[:<COLUMN_NAME>...]
<SORT_ORDER> is the order in which rows in the result should be sorted.
Example:
# Select "name" and "value" columns from secure settings where "name" is equal
to "new_setting" and sort the result by name in ascending order.
adb shell content query --uri content://settings/secure --projection name:valu
e --where "name='new_setting'" --sort "name ASC"

usage: adb shell content call --uri <URI> --method <METHOD> [--arg <ARG>]
[--extra <BINDING> ...]
<METHOD> is the name of a provider-defined method
<ARG> is an optional string argument
<BINDING> is like --bind above, typed data of the form <KEY>:{b,s,i,l,f,d}:<VA
L>

usage: adb shell content read --uri <URI> [--user <USER_ID>]
Example:
# cat default ringtone to a file, then pull to host
adb shell 'content read --uri content://settings/system/ringtone > /mnt/sdcard
/tmp.ogg' && adb pull /mnt/sdcard/tmp.ogg


[ERROR] Unsupported argument: --url

C:\>Name: s: user_setup_complete --bind value: s: 1
  Reply With Quote
The Following 2 Users Say Thank You to maplegsm For This Useful Post:
 
Page generated in 0.09852 seconds with 8 queries