1 5 package com.lutris.appserver.server.sql; 6 7 import java.sql.*; 8 9 13 public interface ExtendedDBConnection extends DBConnection{ 14 15 16 21 public void setConnectionEnterPoolTime(long i); 22 23 28 public long getConnectionEnterPoolTime(); 29 30 31 36 public void setConnectionUsageCounter(int i); 37 38 42 public int getConnectionUsageCounter(); 43 44 45 50 public boolean isDroped(); 51 52 57 public boolean isClosed(); 58 59 60 73 public PreparedStatement prepareStatement(String sql, int iResultSetType, int iResultSetConcurrency) 74 throws SQLException; 75 76 77 80 public int getMaxPreparedStmts() ; 81 82 } 83 | Popular Tags |