How to Install and Uninstall perl-SQL-Tokenizer Package on openSuSE Tumbleweed

Last updated: May 20,2024

1. Install "perl-SQL-Tokenizer" package

Please follow the instructions below to install perl-SQL-Tokenizer on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-SQL-Tokenizer

2. Uninstall "perl-SQL-Tokenizer" package

This tutorial shows how to uninstall perl-SQL-Tokenizer on openSuSE Tumbleweed:

$ sudo zypper remove perl-SQL-Tokenizer

3. Information about the perl-SQL-Tokenizer package on openSuSE Tumbleweed

Information for package perl-SQL-Tokenizer:
-------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-SQL-Tokenizer
Version : 0.24-1.29
Arch : noarch
Vendor : openSUSE
Installed Size : 8.4 KiB
Installed : No
Status : not installed
Source package : perl-SQL-Tokenizer-0.24-1.29.src
Upstream URL : http://search.cpan.org/dist/SQL-Tokenizer/
Summary : A simple SQL tokenizer
Description :
SQL::Tokenizer is a simple tokenizer for SQL queries. It does not claim to
be a parser or query verifier. It just creates sane tokens from a valid SQL
query.
It supports SQL with comments like:
-- This query is used to insert a message into
-- logs table
INSERT INTO log (application, message) VALUES (?, ?)
Also supports '''', '""' and '\'' escaping methods, so tokenizing queries
like the one below should not be a problem:
INSERT INTO log (application, message)
VALUES ('myapp', 'Hey, this is a ''single quoted string''!')