इस बहुत अच्छे प्रश्न को मानने का प्रयास करने और @David Wolever के शानदार उत्तर के तहत टिप्पणियों में से एक में @ BrittonKerin के प्रश्न पर निर्माण करने जा रहा हूँ। यहां साझा करना चाहता था क्योंकि मेरे पास @BrittonKerin जैसी ही चुनौती थी और मुझे कुछ काम मिला (यानी सिर्फ कोड का एक टुकड़ा चलाना चाहते हैं यदि तालिका मौजूद नहीं है)।
# for completeness lets do the routine thing of connections and cursors
conn = sqlite3.connect(db_file, timeout=1000)
cursor = conn.cursor()
# get the count of tables with the name
tablename = 'KABOOM'
cursor.execute("SELECT count(name) FROM sqlite_master WHERE type='table' AND name=? ", (tablename, ))
print(cursor.fetchone()) # this SHOULD BE in a tuple containing count(name) integer.
# check if the db has existing table named KABOOM
# if the count is 1, then table exists
if cursor.fetchone()[0] ==1 :
print('Table exists. I can do my custom stuff here now.... ')
pass
else:
# then table doesn't exist.
custRET = myCustFunc(foo,bar) # replace this with your custom logic