Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>JPSQL RunnerNew to Visual Studio Code? Get it now.
JPSQL Runner

JPSQL Runner

VultureJP

| (0) | Free
Compile J-parameter SQL files and pass the generated SQL to your preferred VS Code SQL extension.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

JPSQL Runner

JPSQL Runner is a Visual Studio Code extension for editing J-parameter SQL (.jpsql) files, compiling report-style parameters into regular SQL, and handing the generated SQL to the SQL extension you already use.

This extension uses a neutral name and its own .jpsql file format. It is not affiliated with any reporting product or trademark owner.

File Format

  • Source files: .jpsql
  • Generated files: temporary regular SQL editors in VS Code

.jpsql stands for J-parameter SQL. Keeping parameterized report queries separate from regular .sql files helps avoid accidentally sending $P{} or $X{} syntax directly to a SQL runner.

Features

  • Edit parameters in the bottom JPSQL panel.
  • Compile and run .jpsql or .jrxml queries from the editor title button or JPSQL: Compile and Run.
  • Preview generated SQL and parameter values with JPSQL: Preview Compiled Query.
  • Expand $P{name} into SQL literals.
  • Expand $P!{name} as raw SQL text.
  • Support $X{IN, column, name}, $X{NOTIN, column, name}, $X{EQUAL, column, name}, and $X{NOTEQUAL, column, name}.
  • Leave connection handling, authentication, and result rendering to your configured SQL extension.

Usage

  1. Install dependencies:

    npm install
    
  2. Compile the extension:

    npm run compile
    
  3. Open this folder in VS Code and press F5 to start an Extension Development Host.

  4. Create or open a .jpsql file.

  5. Open the bottom JPSQL panel.

  6. Click Get Params to add parameter names from the current query.

  7. Set values in the Parameters table.

  8. Run JPSQL: Preview Compiled Query or JPSQL: Compile and Run.

Get Params only adds missing parameter names. Existing parameters with the same name keep their type, value, and null setting.

SQL Runner Command

JPSQL Runner opens the compiled query in a new SQL editor, then invokes the VS Code command configured by jpsql.runnerCommand.

For the Microsoft SQL Server extension:

{
  "jpsql.runnerCommand": "mssql.runQuery"
}

For SQLTools or another SQL extension, set the command ID that runs the current SQL editor:

{
  "jpsql.runnerCommand": "sqltools.executeQuery"
}

If you do not know the command ID, leave it empty. JPSQL Runner will only open the generated SQL, and you can run it with your SQL extension's normal button or command.

{
  "jpsql.runnerCommand": ""
}

Parameter Syntax

select *
from Orders
where CustomerId = $P{CustomerId}
  and CreatedAt >= $P{FromDate}
  and Status in ($P!{StatusCsv})

$P{CustomerId} is converted into a SQL literal based on its configured type, such as 123, N'ABC', or null. Single quotes inside strings are escaped for SQL Server-compatible string literals.

Raw parameters use $P!{name} and are inserted directly into the generated SQL. Use raw parameters only for trusted values such as column names, order by clauses, or known SQL fragments.

Collection Parameters

select *
from Orders
where $X{IN, Status, StatusList}

With this parameter:

name: StatusList
type: Array
value: ["A", "B"]

The generated SQL is:

select *
from Orders
where Status in (N'A', N'B')

Array values can be JSON arrays or comma-separated text. Empty IN arrays compile to 1 = 0; empty NOTIN arrays compile to 1 = 1.

Development

npm run check
npm run package

The package command creates a .vsix file that can be installed locally or attached to a GitHub release.

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