| |
|
| java.lang.Object org.w3c.tools.jdbc.JdbcBeanAdapter
maxConn | protected int maxConn(Code) | | |
readonly | protected boolean readonly(Code) | | |
JdbcBeanAdapter | public JdbcBeanAdapter()(Code) | | Constructor
|
addPropertyChangeListener | public void addPropertyChangeListener(PropertyChangeListener listener)(Code) | | Add a PropertyChangeListener to the listener list. The listener
is registered for all properties.
Parameters: listener - The PropertyChangeListener to be added |
getJdbcDriver | public String getJdbcDriver()(Code) | | Get the JDBC driver
the jdbc driver |
getJdbcPassword | public String getJdbcPassword()(Code) | | Get the password property
the Jdbc password |
getJdbcTable | public String getJdbcTable()(Code) | | Return the name of the SQL table
the SQL table name |
getJdbcURI | public String getJdbcURI()(Code) | | Get the Jdbc URI
the URI (ie: jdbc:protocol://host/db) |
getJdbcUser | public String getJdbcUser()(Code) | | get the Jdbc username property
the Jdbc username property |
getMaxConn | public int getMaxConn()(Code) | | Get the max number os simultaneous Jdbc connections
the max number of connections |
getReadOnly | public boolean getReadOnly()(Code) | | Is this table read-only? (default is false)
a boolean |
removePropertyChangeListener | public void removePropertyChangeListener(PropertyChangeListener listener)(Code) | | Remove a PropertyChangeListener to the listener list.
Parameters: listener - The PropertyChangeListener to be removed. |
setJdbcDriver | public void setJdbcDriver(String jdbcDriver)(Code) | | Set the JDBC driver
Parameters: jdbcDriver - the jdbc driver |
setJdbcPassword | public void setJdbcPassword(String jdbcPassword)(Code) | | Set the password property
Parameters: jdbcPassword - the password |
setJdbcTable | public void setJdbcTable(String jdbcTable)(Code) | | Set the name of the SQL table
Parameters: jdbcTable - the SQL table name |
setJdbcURI | public void setJdbcURI(String jdbcURI)(Code) | | Set the Jdbc URI
Parameters: jdbcURI - the URI (ie: jdbc:protocol://host/db) |
setJdbcUser | public void setJdbcUser(String jdbcUser)(Code) | | Set the Jdbc username property
Parameters: jdbcUser - the username |
setMaxConn | public void setMaxConn(int maxConn)(Code) | | Set the max number os simultaneous Jdbc connections
Parameters: maxConn - the max number of connections |
setReadOnly | public void setReadOnly(boolean readonly)(Code) | | Set the read-only flag
Parameters: readonly - |
|
|
|