# Example: editing a value in a custom table "my_table" # where setedit doesn't support it TABLE_NAME="my_table" COLUMN_NAME="my_column" NEW_VALUE="new_value" WHERE_CLAUSE="_id=1"
It looks like you're asking for a piece of code or script to handle editing a table that setedit (the Android settings database editor) does not support. setedit does not currently support editing this table
sqlite3 /data/data/com.android.providers.settings/databases/settings.db "UPDATE $TABLE_NAME SET $COLUMN_NAME='$NEW_VALUE' WHERE $WHERE_CLAUSE;" # Example: editing a value in a custom