コード例 #1
0
ファイル: DesktopDatabase.java プロジェクト: nindriago/fermat
  /** This method execute a string query command in database */
  @Override
  public void executeQuery(String query) throws CantExecuteQueryException {

    try {
      Database.execSQL(query);
    } catch (SQLException exception) {
      throw new CantExecuteQueryException(exception);
    }
  }