Uses of Interface
com.mckoi.database.jdbcserver.ServerConnection
-
Packages that use ServerConnection Package Description com.mckoi.database.jdbcserver Implementation of the DatabaseInterface interface, including classes to handle local (embedded) mode and remote (client/server) mode. -
-
Uses of ServerConnection in com.mckoi.database.jdbcserver
Classes in com.mckoi.database.jdbcserver that implement ServerConnection Modifier and Type Class Description (package private) classStreamJDBCServerConnectionA generic JDBC stream protocol server that reads JDBC commands from a stream from each connection and dispatches the commands appropriately.(package private) classTCPJDBCServerConnectionA ServerConnection that processes JDBC queries from a client from a TCP Socket.Fields in com.mckoi.database.jdbcserver declared as ServerConnection Modifier and Type Field Description private ServerConnectionSingleThreadedConnectionPoolServer.ServerConnectionState. connectionThe local variables.private ServerConnectionMultiThreadedConnectionPoolServer.ClientThread. server_connectionThe ServerConnection object being serviced by this thread.Methods in com.mckoi.database.jdbcserver that return ServerConnection Modifier and Type Method Description ServerConnectionSingleThreadedConnectionPoolServer.ServerConnectionState. getConnection()Queries the internal state.Methods in com.mckoi.database.jdbcserver with parameters of type ServerConnection Modifier and Type Method Description voidConnectionPoolServer. addConnection(ServerConnection connection)Connects a new ServerConnection into the pool of connections to clients that this server maintains.voidMultiThreadedConnectionPoolServer. addConnection(ServerConnection connection)Connects a new ServerConnection into the pool of connections to clients that this server maintains.voidSingleThreadedConnectionPoolServer. addConnection(ServerConnection connection)Connects a new ServerConnection into the pool of connections to clients that this server maintains.Constructors in com.mckoi.database.jdbcserver with parameters of type ServerConnection Constructor Description ClientThread(ServerConnection connection)The Constructor.ServerConnectionState(ServerConnection connection)The Constructor.
-