MCPcopy Create free account
hub / github.com/buggins/coolreader / execSQL

Method execSQL

android/src/org/coolreader/crengine/CRDB.java:125–136  ·  view source on GitHub ↗
( String... sqls )

Source from the content-addressed store, hash-verified

123 }
124
125 private void execSQL( String... sqls )
126 {
127 for ( String sql : sqls ) {
128 try {
129 mDB.execSQL(sql);
130 } catch ( SQLException e ) {
131 // ignore
132 Log.w("cr3", "query failed: " + sql);
133 throw e;
134 }
135 }
136 }
137
138 private void execCoverpageSQL( String... sqls )
139 {

Callers 10

updateSchemaMethod · 0.95
saveOPDSCatalogMethod · 0.95
dropTablesMethod · 0.80
execSQLIgnoreErrorsMethod · 0.80
execCoverpageSQLMethod · 0.80
saveBookAuthorsMethod · 0.80
updateMethod · 0.80
onUpgradeMethod · 0.80
createPurchaseTableMethod · 0.80

Calls 1

wMethod · 0.65

Tested by

no test coverage detected