Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>IBM IMS Explorer for VS CodeNew to Visual Studio Code? Get it now.
IBM IMS Explorer for VS Code

IBM IMS Explorer for VS Code

IBM

ibm.com
|
67 installs
| (4) | Free
Provides a modern environment to simplify development tasks with IMS
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

IBM IMS® Explorer for VS Code

IMS Explorer for VS Code provides modern development practices and simplifies complex IMS development tasks using Visual Studio Code.

Designed for application developers, database administrators, and system programmers, IMS Explorer for VS Code provides built-in features to access IMS inside Visual Studio Code IDE. By combining multiple activities into one environment, IMS Explorer for VS Code promotes modern development practices and simplifies complex IMS development tasks. IMS Explorer for VS Code 1.0.0 supports the following actions:

  • Create and edit projects, driver definitions, and database connections.
  • Connect to IMS Catalog and browse IMS databases.
  • View PSB, DBD, DDL sources, segments and fields of your database.
  • Access IMS data with SQL queries.

See Capabilities below for more details.

Visit the IMS Explorer Github repository for documentation and additional information. Engage in the community forum for announcements of latest updates, provide feedback, submit questions, polls or request for ideas.

Table of contents

  • Support
  • Prerequisites
  • Extension settings
  • Configuring IMS Workspaces
  • Configuring Java
  • Capabilities

Support

To report issues or submit feedback about this extension, please open an issue in our GitHub repository. GitHub issues may also be used to submit requests for future enhancements

Prerequisites

Review the IMS Explorer for VS Code License Agreement and Third Party Notices before downloading.

The following software requirements must be met to run IMS Explorer for VS Code.

  • Microsoft VS Code version 1.105.0 or later.
  • Java SDK or JRE version 21 or later - 64 bit: The language servers included in this extension are implemented in Java, and require a 64-bit Java SDK or Runtime in order to start successfully. Examples of supported Java runtimes include the following:
    • Version 21 of IBM's Semeru Runtime that can be downloaded here.
    • Oracle Java 21.
    • OpenJDK.
    • Newer versions of Java should also work, but IMS Explorer for VS Code is developed on and tested for Java 21.

Extension settings

Configurations can be made in VS Code Extension settings in order to specify the following:

  • Java dependency Jar files for the IMS SQL service
  • Specific Java installations used for IMS connections
  • Maximum heap size for IMS connections
  • Storage location for extension data
  • Large list limit thresholds

Configuring IMS workspaces

Before getting started with an IMS project, ensure that the desired workspace for your IMS projects has been specified using the IMS Workspace status bar option. This option determines the location for the ims.connections.json file, and can provide a common location for IMS project files to be shared in source control.

Configuring Java

The IMS Explorer for VS Code extension utilizes VS Code user settings to configure Java. These settings allow you to select the specific installation of Java to pick, in case you have several installations, as well as set parameters such as how much memory you want the language servers to use.

Selecting the Java installation to use

IMS Explorer for VS Code extension will scanned the following locations, in the order specified, for the first Java installation that is at least Version 21 and 64-Bit to be used. If the target Java fails to meet requirements, the remaining target locations will be scanned:

  1. The ims.explorer.connection.property.javaHome VS Code user setting.
  2. The java.jdt.ls.java.home VS Code user setting.
  3. The JAVA_HOME environment variable.
  4. The PATH defined for the environment in which IMS Explorer for VS Code runs (i.e. you default Windows or MacOS path)
  5. A typical platform-specific location. For example, on MacOS it will execute the /usr/libexec/java_home -V and on Windows the where java.exe commands to locate a valid Java installation.

Note that the methods at the end of the list require a significant amount of time as they are executing programs on your system. To improve startup times you should consider user settings as they provide the best startup performance.

If Java cannot be located check the VS Code Output view's IMS Explorer for VS Code tab for any error and try to fix the problem by either setting the JAVA_HOME environment variable or create an entry in your VS Code user settings.

To define a user setting use the Preferences > Settings menu and either locate the setting in the graphical editor under IMS Explorer for VS Code or edit the setting json file directly by adding an entry as follows using an absolute path name to the Java installation directory.

On Mac:

"ims.explorer.connection.property.javaHome": "/Library/Java/JavaVirtualMachines/jdk21/Contents/Home"

On Windows:

"ims.explorer.connection.property.javaHome": "C:\\Program Files\\Java\\jdk21"

Configuring Java memory allocation

By default, a maximum of 2 gigabytes of memory will be allocated to be used for each IMS database connection. Ensure that your system has enough memory to support multiple database connections and SQL calls by using the following VS Code Settings provided to specify the maximum value of allocated memory.

"ims.explorer.connection.property.maxHeapSize": "2g"

Configuring log level

The default Java logging level is info. Use the following VS Code Setting to change the value.

"ims.explorer.logging.level": "INFO"

The logs appear in the Output panel. Additional logs would be displayed in the IBM IMS Explorer for VS Code output channel and the IBM IMS Explorer LSP server output channel.

Configuring IMS Workspace

Use the following VS Code Setting to change the defult directory of the IMS Workspace location to store associated extension files.

On macOS: Default directory is the user home directory.

"ims.explorer.property.ImsWorkspace": "/Users/<username>/.vscode/ims-workspace"

On Windows: Default directory is current the user profile directory.

"ims.explorer.property.ImsWorkspace": "C:\\Users\\%USERNAME%\\.vscode\\ims-workspace"

Capabilities

The following sections offer a preview of the features available with the IMS Explorer for VS Code.

IMS connection profiles

Create connections to IMS databases using the IMS connections view. IMS connections can be organized into folders and expanded or collapsed.

IMS connections tree and table views

You can add multiple IMS database connections in a tree view. Browse DBDs, PSBs, and PCBs for IMS databases using the IMS Connections tree view. You can use this view to:

  • Add IMS catalog and database connections
  • Expand and collapse database connection contents to view DBDs, PSBs, and PCBs
  • Select an individual DBD, PSB, or PCB and right-click to view DDL, segments, and source code

In addition to segments and fields, IMS database DBDs, PSBs, and PCBs can also be viewed in a table. This allows simple click navigation between related PSBs and PCBs to find associated segments and fields.

You can verify connections to IMS databases or select another connection using the IMS Connection option in the status bar.

IMS Projects

Create IMS projects to edit and organize SQL queries to execute on IMS databases.

Edit and execute SQL

Edit and execute SQL from an IMS project file against an IMS database using a specified database connection. A results window is provided with a table containing the resulting query information. You can sort and filter results within the table.

Each result set from SQL queries are stored in a query history view. You can download SQL result sets as a CSV file.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft