开发者

Connecting to Oracle DB through NetBeans

I'm using NetBeans and I need to connect to Oracle Database.

I set up the driver and the connection and it all works fine. I can run queries on this connection just fine (through the IDE).

The problem is this- The tables I want to work with are not defined on the same schema that I use for the connection, although, my schema does have all the premissions to view and alter those tables.

But since the tables don't belong to this schema, they are not presented in the Tables node of the connection开发者_C百科 in NetBeans, and I can't use the wizard in order to create entities for those tables.

Any solutions?

Thanks, Malki.


Does NetBeans work with synonyms ? If so you could try creating synonyms in your connection schema pointing to the tables in the primary schema.

If it is just for the purposes of the Wizard, grab your own development database and create copies of the tables there. Generate your app against connections to that database, and then just change your connection when you are done.

You app may want to issue a 'ALTER SESSION SET CURRENT_SCHEMA = ....' on logon so that it looks at the appropriate schema by default, rather than that of the connected user.


Why can't you create another connection with schema containing tables you need? Why can't you create a connection without specified schema (which will give you access to all schemes the user is authorized to access)?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜