package androidx.sqlite.db; /* loaded from: classes.dex */ public interface SupportSQLiteStatement extends SupportSQLiteProgram { void execute(); long executeInsert(); int executeUpdateDelete(); long simpleQueryForLong(); String simpleQueryForString(); }