python - Programatically retrieve indexs in sqlite -
Is there a way to see the current index in sqlite3
? I have to find out at the runtime whether some columns have an index or not, and so far I can not find anywhere that tells how to get announcements without using sqlite3 CLI
.
You can obtain a list of the index of a table, and list the columns in an index Can get it.
Comments
Post a Comment