logintimeout - Set or get time allowed to establish database connection

Syntax

timeout = logintimeout('driver', time)
timeout = logintimeout(time)
timeout = logintimeout('driver')
timeout = logintimeout

Description

Examples

Example 1 — Get Timeout Value for ODBC Connection

View the current connection timeout value.

 logintimeout
 ans =
     0

This indicates that you have not specified a timeout value.

Example 2 — Set Timeout Value for ODBC Connection

Set the timeout value to 5 seconds.

logintimeout(5)
ans =
     5

Example 3 — Get and Set Timeout Value for JDBC Connection

  1. Check the timeout value for a database connection that is established using an Oracle® JDBC driver.

    logintimeout('oracle.jdbc.driver.OracleDriver')
    ans =
         0
    

    This indicates that the timeout value is currently 0.

  2. Set the timeout to 5 seconds.

    timeout = ...
    logintimeout('oracle.jdbc.driver.OracleDriver', 5)
    timeout =
         5
    
  3. Verify the timeout value.

    logintimeout('oracle.jdbc.driver.OracleDriver')
    ans =
         5
    

See Also

database, get, set

  


 © 1984-2008- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS