forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lu, Huayi <luhuayi@huawei.com> Co-committed-by: Lu, Huayi <luhuayi@huawei.com>
7.8 KiB
7.8 KiB
javax.naming.Context
This section describes javax.naming.Context, the context interface for connection configuration.
Method Name |
Return Type |
Support JDBC 4 |
---|---|---|
bind(Name name, Object obj) |
void |
Yes |
bind(String name, Object obj) |
void |
Yes |
lookup(Name name) |
Object |
Yes |
lookup(String name) |
Object |
Yes |
rebind(Name name, Object obj) |
void |
Yes |
rebind(String name, Object obj) |
void |
Yes |
rename(Name oldName, Name newName) |
void |
Yes |
rename(String oldName, String newName) |
void |
Yes |
unbind(Name name) |
void |
Yes |
unbind(String name) |
void |
Yes |
Parent topic: JDBC Interface Reference