일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- sencha touch
- appspresso
- Android
- swingx
- JSON
- Struts
- JDOM
- Eclipse
- GPS
- dock
- ibsheet
- MFC
- Spring
- Google Map
- 선택적조인
- PLSQL
- 가우스
- 전자정부프레임워크
- node.js
- oracle
- iBATIS
- tomcat
- MySQL
- jsr 296
- Ajax
- phonegap
- WebLogic
- rowspan
- PHP
- jQuery
Archives
- Today
- Total
Where The Streets Have No Name
Retrieving column metadata over database link 본문
http://forums.oracle.com/forums/thread.jspa?messageID=1434437
props.put("includeSynonyms", true);
connection = DriverManager.getConnection(connectUrl, props);
I'm using the most recent Oracle thin JDBC driver. Then to get the columns for my synonym:
meta = conn.getMetaData();
rs = meta.getColumns(null, "MY_DB", "MY_SYN", "%");
http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/basic.htm#1006248
props.put("includeSynonyms", true);
connection = DriverManager.getConnection(connectUrl, props);
I'm using the most recent Oracle thin JDBC driver. Then to get the columns for my synonym:
meta = conn.getMetaData();
rs = meta.getColumns(null, "MY_DB", "MY_SYN", "%");
http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/basic.htm#1006248