Replace complex SQL stored procedures with SPL scripts that support loops, branches, and step-by-step debugging in a spreadsheet interface.
Embed SPL as a data processing engine inside a Java web application to query databases, CSV files, and REST APIs in one script.
Process datasets too large for one machine using SPL built-in distributed computing without changing your existing code structure.
The SPL IDE must be downloaded from the project website, Java runtime is required for embedded use.
esProc SPL is a programming language built for working with structured data, which is the kind of data organized in rows and columns that you would normally find in a spreadsheet or a database. Instead of writing code in a plain text editor, you write SPL in a grid that looks similar to Excel. As you write, the results of each step appear in real time in the cell next to your code, which makes it much easier to understand what is happening at each stage. SPL stands for Structured Process Language. Its main purpose is to do the kinds of data processing tasks that people currently split between SQL and Python. SQL is the language most databases use, and it is good at querying data but awkward for complex step-by-step logic. Python fills those gaps but adds complexity. SPL aims to handle both in a single language, keeping the conciseness of SQL for data operations while supporting full programming constructs like loops, branches, and recursion. The language can be used in two ways. As a standalone tool it includes a desktop IDE with a spreadsheet-style interface where you write and run scripts interactively. As an embedded engine it can be dropped into a Java application, where it processes data and returns results to the host program. It can also run inside databases as a stored procedure replacement, or sit alongside a web application to handle data queries. The README describes several integration patterns: connecting to relational databases, reading from files like CSV, JSON, or Excel, working with data from HTTP APIs, and even querying data spread across multiple sources in a single script. There is also built-in support for distributed computing when datasets are too large for one machine. The project has a community forum, a Discord server, a blog, and a Reddit community. Downloads are available from the project website. The README includes links to an online playground where you can try SPL without installing anything.
← splware on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.