0.1.1 • Published 3 years ago

@cybertec/plpgsql-analyzer v0.1.1

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
3 years ago

🗒️️ About

Parse and analyze Oracle PL/SQL code.

🛠️ Installation

npm install --save @cybertec/plpgsql-analyzer
# OR
yarn add @cybertec/plpgsql-analyzer

🚀 Usage

import { analyze, DboType } from "plpgsql-analyzer";

const content = `CREATE FUNCTION my_func
RETURN NUMBER
IS
BEGIN
    RETURN 1;
END my_func;`;

analyze(DboType.Function, content, { tables: {} });

📝 License

See LICENSE.

👤 Authors