1 23 package com.lutris.appserver.server.sql.oracle; 24 25 import java.sql.SQLException ; 26 27 import com.lutris.appserver.server.sql.ConnectionAllocator; 28 import com.lutris.appserver.server.sql.standard.StandardDBConnection; 29 30 38 public class OracleDBConnection extends StandardDBConnection { 39 40 63 protected OracleDBConnection(OracleConnectionAllocator connectionAllocator, 64 String url, String user, String password, 65 int maxPreparedStatements, 66 boolean logging, int generation) 67 throws SQLException { 68 super((ConnectionAllocator)connectionAllocator, url, user, password, maxPreparedStatements, 69 logging, generation); 70 } 71 } 72 | Popular Tags |