How to Install and Uninstall perl-SQL-Tokenizer Package on openSUSE Leap

Last updated: May 19,2024

1. Install "perl-SQL-Tokenizer" package

Please follow the step by step instructions below to install perl-SQL-Tokenizer on openSUSE Leap

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

2. Uninstall "perl-SQL-Tokenizer" package

Here is a brief guide to show you how to uninstall perl-SQL-Tokenizer on openSUSE Leap:

$ sudo zypper remove perl-SQL-Tokenizer

3. Information about the perl-SQL-Tokenizer package on openSUSE Leap

Information for package perl-SQL-Tokenizer:
-------------------------------------------
Repository : Main Repository
Name : perl-SQL-Tokenizer
Version : 0.24-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 8.7 KiB
Installed : No
Status : not installed
Source package : perl-SQL-Tokenizer-0.24-bp155.2.12.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''!')