일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- tomcat
- Google Map
- JDOM
- PHP
- jQuery
- rowspan
- MFC
- iBATIS
- JSON
- Spring
- 선택적조인
- MySQL
- oracle
- Struts
- GPS
- 가우스
- Android
- Ajax
- PLSQL
- node.js
- swingx
- WebLogic
- 전자정부프레임워크
- sencha touch
- ibsheet
- Eclipse
- appspresso
- dock
- phonegap
- jsr 296
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