Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHPStorm / Intellij - Export / Import Database Settings

These two IDE's have a great database query engine that I rely on. But I sometimes work on multiple machines. I know that I can export and import IDE settings, but is there a way that I can export/import database settings from one machine to another?

I've looked and grepped through the file structure, but haven't found anything. I am thinking it must be encrypted somewhere. Thanks.

like image 870
EdgeCase Avatar asked Dec 06 '12 13:12

EdgeCase


People also ask

How do I export and import data from PhpStorm?

PhpStorm has an engine to export and import data in various formats. You can select a predefined format or create your own. For more information about export and import operations, see the following topics: Export: see how to generate DDL for objects and export data in different formats.

How to export IntelliJ settings to other JetBrains products?

You have to go File --> Manage IDE Settings --> Export settings. You can disable the "Settings repository" under File --> Settings --> Plugins but this doesn't seem to make a blind bit of difference to your ability to export settings "manually". Can you export Intellij settings to other JetBrains products like Pycharm, Clion ect.?

What is PhpStorm and how do I use it?

PhpStorm lets you share your IDE settings between different instances of the product, or among your team members.

What is global data source in IntelliJ?

In IntelliJ-based IDEs, a data source can be global. This means it becomes visible from all projects you run from a particular IDE. By default, data sources are local.


1 Answers

As I understand you are talking about Database tool window.

Such settings are saved in dataSources.ids/.xml pair of files. Location depends on how Data Source was declared:

  • Project level -- in .idea subfolder next to other project settings
  • Globally -- in config\options\ folder (e.g. C:\Users\USERNAME\.WebIde60\config\options\ on Windows 7)
like image 62
LazyOne Avatar answered Sep 19 '22 01:09

LazyOne