|  Last change: | 
enable multiple (bulk) inserts: 
 
#sample sql 
 
$SQL = "INSERT INTO 
northwind.employees 
(LastName, FirstName, BirthDate, HireDate, Address, City, Region, PostalCode, Country, HomePhone) 
VALUES 
('Davolio', 'Nancy', '1992-05-01', 'Seattle', 'WA', 98122, 'United States', '(206) 555-9857', 5467, ''), 
('Smith', 'Tom', '1991-02-01', 'New York', 'NY', 12345, 'United States', '(555) 555-9857', 1234, 'some text here'), 
('Doe', 'John', '1993-04-01', 'Los Angeles', 'CA', 12345, 'United States', '(555) 555-9857', 4321, 'Some text here')"; 
 
$sqlObject = new Sql_Parser($SQL); 
$parsedSQL = $sqlObject->parse(); 
 
 
 |