voidexecuteUpdateAsync(String sql); //Executes update asyncResultSetexecuteQueryAsync(String query); //Executes query asyncvoidinsert(String tableName,Object...data); //Inserts data to database//Deletes all from table when the where condition is pass, this is not truncate actionvoiddeleteAllWhere(String tableName,String whereCondition); //Updates some fields provided in map when the where condition is passvoidupdateWhere(String tableName,Map<String, Object> data,String whereCondition);ResultSetselectAll(String tableName); //Selects all data from table//Selects all data from table when the where condition is passResultSetselectWhere(String tableName,String whereCondition,String...columnNames);
How to create your own implemantion of this adapter?