[automerger skipped] Merge Android 14 QPR1 am: cfd58453d6 -s ours am: 866fb8c043 -s ours am: 97a057f604 -s ours

am skip reason: Merged-In I880a85493c46efc41a146c1a9721e4662397f2c7 with SHA-1 cff7500574 is already in history

Original change: https://android-review.googlesource.com/c/platform/packages/providers/ContactsProvider/+/2865784

Change-Id: I6d0ffe0ba2b375b299a20f623bba8c78b80e0188
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
tree: 8dc661e710c7d523e0d9f68e2566e4f53e97299e
  1. qc/
  2. res/
  3. src/
  4. test_common/
  5. tests/
  6. tools/
  7. Android.bp
  8. AndroidManifest.xml
  9. CleanSpec.mk
  10. contactsproviderutils.sh
  11. logging.sh
  12. OWNERS
  13. PREUPLOAD.cfg
  14. proguard.flags
  15. README-tests.md
  16. README.md
  17. TEST_MAPPING
README.md

Debugging Tools

Enable all verbose logs

Running ./logging.sh will enable all verbose logs for the queries in the provider. More details in the script itself.

Querying the database

There are 2 different ways to easily query the database, qc and contatcsproviderutils.sh.

QC usage

qc queries the deivce directly. For usage, append the query in single quotes after the command:

e.g.

qc/qc 'select * from raw_contacts'

or to get all the tables

qc/qc '.tables'

QC support SQLite language, but it might have some limitations working with complex nested queries.

contactsproviderutils.sh usage

This script downlaods the database locally and logins into a local version. It is also possible to push any change back to the device.

  • Add tools to path
    source contactsproviderutils.sh
    
  • Pull contacts2.db and query:
    sqlite3-pull
    
    This will open a sql terminal with rlwrap which can be easily used for queries.
  • Pull contacts2.db and query with a graphical interface:
    sqlitebrowser-pull
    
  • Push local updates to the device:
    sqlite3-push