Searched defs:execSQL (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/datamodel/
H A DDatabaseWrapper.java423 public void execSQL(final String sql, final String[] bindArgs) { method in class:DatabaseWrapper
430 mDatabase.execSQL(sql, bindArgs);
432 LogUtil.e(TAG, "Database full, unable to execSQL", ex);
437 printTiming(t1, String.format(Locale.US, "execSQL %s", sql));
441 public void execSQL(final String sql) { method in class:DatabaseWrapper
448 mDatabase.execSQL(sql);
450 LogUtil.e(TAG, "Database full, unable to execSQL", ex);
455 printTiming(t1, String.format(Locale.US, "execSQL %s", sql));

Completed in 53 milliseconds