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) class
StreamJDBCServerConnection
A generic JDBC stream protocol server that reads JDBC commands from a stream from each connection and dispatches the commands appropriately.(package private) class
TCPJDBCServerConnection
A 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 ServerConnection
SingleThreadedConnectionPoolServer.ServerConnectionState. connection
The local variables.private ServerConnection
MultiThreadedConnectionPoolServer.ClientThread. server_connection
The ServerConnection object being serviced by this thread.Methods in com.mckoi.database.jdbcserver that return ServerConnection Modifier and Type Method Description ServerConnection
SingleThreadedConnectionPoolServer.ServerConnectionState. getConnection()
Queries the internal state.Methods in com.mckoi.database.jdbcserver with parameters of type ServerConnection Modifier and Type Method Description void
ConnectionPoolServer. addConnection(ServerConnection connection)
Connects a new ServerConnection into the pool of connections to clients that this server maintains.void
MultiThreadedConnectionPoolServer. addConnection(ServerConnection connection)
Connects a new ServerConnection into the pool of connections to clients that this server maintains.void
SingleThreadedConnectionPoolServer. 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.
-