* @param id
*/
public ServerDBControl(Employee owner, ClientThread clientThread, int id) {
this.owner = owner;
owner.setDBControl(this);
syncDown = new SyncDownThread(this, id);
syncDown.freeze();
dbConnector = ServerDB.getInstance();
SDBCPool.getInstance().register(this, clientThread);
try {