Omit schema in the DERBY Query

假如想象 提交于 2019-11-28 13:42:47

There are basically two ways to control the default schema name:

  1. Issue the SET SCHEMA statement after you have connected to the database.
  2. Login as the user with the same name as the schema you wish to use.

If you haven't issued a SET SCHEMA statement, then Derby will use your username as the schema name.

So if you login as user "APP", and don't issue a SET SCHEMA statement, then your schema name will be APP.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!