Light PHP SQL Parser Class: Parse SQL to get query type, tables, field values

Recommend this page to a friend!
  Info   View files Example   View files View files (7)   DownloadInstall with Composer Download .zip   Reputation   Support forum (2)   Blog    
Last Updated Ratings Unique User Downloads Download Rankings
2020-09-29 (5 months ago) RSS 2.0 feedNot enough user ratingsTotal: 208 This week: 2All time: 8,249 This week: 182Up
Version License PHP version Categories
lightsqlparser 0.1.96Free for non-comm...5PHP 5, Databases, Parsers
Collaborate with this project Author
Description

This class can parse SQL to get query type, tables, field values, etc..

It takes an string with a SQL statements and parses it to extract its different components.

Currently the class can extract the SQL query type (SELECT, INSERT, UPDATE, DELETE), the names of the tables involved in the query and the field values that are passed as parameters.

Picture of Marco Cesarato
  Performance   Level  
Name: Marco Cesarato <contact>
Classes: 9 packages by
Country: Italy Italy
Innovation award
Innovation award
Nominee: 2x

Details

PHP Light SQL Parser Class

Version: 0.1.97 beta

Github: https://github.com/marcocesarato/PHP-Light-SQL-Parser-Class

Author: Marco Cesarato

Description

This class can parse SQL to get query type, tables, field values, etc..

It takes an string with a SQL statements and parses it to extract its different components.

Currently the class can extract the SQL query method, the names of the tables involved in the query and the field values that are passed as parameters. This parser is pretty light respect phpsqlparser or others php sql parser.

Requirements

  • php 4+

Install

Composer

  1. Install composer
  2. Type `composer require marcocesarato/sqlparser`
  3. Enjoy

Usage

$lsp = new LightSQLParser("UPDATE Customers as ae SET ContactName = 'Alfred Schmidt', City= 'Frankfurt' WHERE CustomerID = 1;");

OR

$lsp = new LightSQLParser();
$lsp->setQuery("UPDATE Customers as ae SET ContactName = 'Alfred Schmidt', City= 'Frankfurt' WHERE CustomerID = 1;");

Method

How retrieve query method:

$lsp->method();

Output

string(6) "UPDATE"

Tables

How retrieve query tables:

$lsp->tables();

Output

array(1) {
  [0]=>
  string(9) "Customers"
}

Fields

How retrieve query fields:

$lsp->fields();

Output

array(2) {
  [0]=>
  string(11) "ContactName"
  [1]=>
  string(4) "City"
}

Methods

LightSQLParser

| Method | Parameters | Description | | ----------- | ----------------------------------- | -------------------------------------------------- | | __construct | | Constructor | | setQuery | | Set SQL Query string | | method | param $query<br> return string | Get SQL Query method | | fields | param $query<br> return array | Get Query fields (at the moment only SELECTINSERTUPDATE) | | table | param $query<br> return string | Get SQL Query First Table | | tables | return array | Get SQL Query Tables |

  Files folder image Files  
File Role Description
Files folder imageDemo (1 file)
Files folder imagesrc (1 file)
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file demo.php Example Demo
Accessible without login Plain text file LICENSE Lic. License text
Plain text file lightsqlparser.class.php Class Main Class
Accessible without login Plain text file README.md Doc. README

  Files folder image Files  /  Demo  
File Role Description
  Accessible without login Plain text file demo.php Example Example script

  Files folder image Files  /  src  
File Role Description
  Plain text file LightSQLParser.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 71%
Total:208
This week:2
All time:8,249
This week:182Up
User Comments (1)
 

For more information send a message to info at phpclasses dot org.