Uses of Class
org.ifeth.sehr.lib.SEHRDataSource

Packages that use SEHRDataSource
org.ifeth.sehr.client.api   
org.ifeth.sehr.lib   
 

Uses of SEHRDataSource in org.ifeth.sehr.client.api
 

Methods in org.ifeth.sehr.client.api that return SEHRDataSource
 SEHRDataSource SEHRRemoteInterface.initSEHRDataSource()
          initialize and get SEHRDataSource object of the SEHR host connection
 SEHRDataSource SEHRRemote.initSEHRDataSource()
          Initialize a new SEHRDataSource object on the SEHR host connection Use this to access a db on SEHR host e.g. by 'Java.sql' objects, DAOJdbc.DAOJdbc(SEHRDataSource)or other layers.
 

Uses of SEHRDataSource in org.ifeth.sehr.lib
 

Methods in org.ifeth.sehr.lib that return SEHRDataSource
 SEHRDataSource SEHRCfg.getFbds()
           
 

Methods in org.ifeth.sehr.lib with parameters of type SEHRDataSource
 java.sql.Connection SEHRDataSource.connectFBDataSource(SEHRDataSource fbds, java.lang.String host, java.lang.String port, java.lang.String database, java.lang.String dblogin, java.lang.String dbpw)
          Deprecated. use 'connect()'
static java.sql.Connection SEHRDataSource.connectFBDataSource(SEHRDataSource fbds)
          Deprecated. use 'connect()'
static java.sql.Connection SEHRDataSource.connect(SEHRDataSource fbds)
          Make a connection for the given firebird database source object assuming the parameters are already invoked by the given 'fbds' object instance.
static void SEHRDataSource.closeFBDataSource(SEHRDataSource fbds)
          Deprecated. use 'close(...)'
static void SEHRDataSource.close(SEHRDataSource fbds)
          Close the firebird datasource handle of the given object.
 java.sql.Connection SEHRDataSource.getHFBConnection(SEHRDataSource sds)
          Return the connection handle for given firebird datasource object
static java.lang.String SEHRDataSource.showTables(SEHRDataSource fbds)
           
static java.lang.String SEHRDataSource.showTables(SEHRDataSource fbds, boolean showfields)
           
static java.lang.String SEHRDataSource.showProcedures(SEHRDataSource fbds)
           
 void SEHRCfg.setFbds(SEHRDataSource fbds)
           
 void DAOJdbc.setSEHRDataSource(SEHRDataSource fbds)
          Set the FBDataSource handle for which a connection can be initialized.
 void DAOBaseInterface._setSEHRDataSource(SEHRDataSource fbds)
           
 void DAOBase.setSEHRDataSource(SEHRDataSource fbds)
          Set the fbds handle for iBatis to use
static java.util.Hashtable AccessControl.checkLogin2SEHRZone(java.lang.String usrname, java.lang.String passwd, java.lang.String zone, SEHRDataSource fbds)
          Check username and password to login at SEHR host (zone).
static boolean AccessControl.VerifySessionByID(java.lang.String sessionid, SEHRDataSource fbds)
          This method checks if the given 'sessionid' is valid.
static boolean AccessControl.LogoutFromZone(java.util.Hashtable session, SEHRDataSource fbds)
          Logout from zone...
static int AccessControl.checkLogin2Service(int usrid, java.lang.String login, java.lang.String passwd, java.lang.String pik, SEHRDataSource fbds)
          Check username and password to login for a module of SEHR.
static int AccessControl.checklogin4module(java.lang.String login, java.lang.String passwd, java.lang.String pik, SEHRDataSource fbds)
          Deprecated. Conceptional error on authentification!
 

Constructors in org.ifeth.sehr.lib with parameters of type SEHRDataSource
DAOJdbc(SEHRDataSource fbds)
          Constructor with given FBDataSource object.