1 package com.teamkonzept.db; 2 3 import java.sql.*; 4 5 12 public abstract class TKDBData { 13 14 17 public abstract void fill(ResultSet rs) 18 throws SQLException; 19 20 24 public abstract void insertIntoQuery(TKQuery query) 25 throws SQLException; 26 27 31 public abstract void insertPrimaryIntoQuery(TKQuery query) 32 throws SQLException; 33 34 39 public void insertInitialIntoQuery(TKQuery query) 40 throws SQLException 41 { 42 } 43 44 } 45 | Popular Tags |