英文:
Create a database in IntelliJ IDEA
问题
我必须在任何关系型数据库管理系统(如Oracle、Postgres、MySQL、Java DB等)中创建一个名为"Cars"的数据库。然后,我必须创建一个名为"dbus"的用户,密码为"uspass",还有两个表。
你们当中有谁能解释一下如何在IntelliJ中创建一个数据库?我找不到任何选项。
我在某个地方读到,我必须下载一个数据库浏览器,我下载了,但我认为我不能创建一个新数据库。据我理解,这个"db浏览器"只能连接到现有的数据库。
我只想创建一个可以在其中创建一些表的数据库。然后,我希望通过连接来操作它。
英文:
I have to create a database having the name Cars using any RDBMS (Oracle, Postgres, MySql, Java DB, etc.).
Then I have to create a user with the name "dbus" and the password "uspass"; and 2 tables.
Can any of you explain to me how I can create a database in intellij? I can't find any options.
I read somewhere that I have to download a database browser, I downloaded it and I don't think I can create a new database. As far as I understand, this "db browser" only establishes a connection to an existing database.
I just want to create a database where I can create some tables. Then with the connection I hope I can handle it.
答案1
得分: 3
对于大多数数据源,您必须提供现有数据库的 URL,您可以在其中创建表等。
数据库必须已经存在,您应该使用相应关系数据库管理系统(RDBMS)的管理工具先创建数据库和用户。只有在这之后,您才能在 IDE 中连接并与该数据库一起工作。
据我所知,仅在嵌入式 Apache Derby 数据源中,直接从 IntelliJ IDEA 创建数据库是可能的:
附:数据库插件仅在 IntelliJ IDEA Ultimate 版本中可用。相同功能也集成在他们的独立产品 DataGrip 中。
英文:
For most data sources you have to provide the URL of the existing database where you can create tables, etc.
The database needs to already exist and you should use the administrative tools for the corresponding RDBMS to create a database and a user first. Only after that you can connect and work with this database in the IDE.
As far as I know, creating the database directly from IntelliJ IDEA is possible only for the Embedded Apache Derby data source:
P.S. Database plug-in is available only in IntelliJ IDEA Ultimate edition. And same functionality built into their separate product, DataGrip.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论