Giter Site home page Giter Site logo

Comments (9)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
What column type is "test"? The parser doesn't await an expression at this 
point. Normally I use Oracle, so the statement is a little bit strange to me.

Original comment by [email protected] on 12 Mar 2012 at 12:52

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
INSERT INTO test (`name`, `test`) VALUES ('\'Superman\'', ''), ('\'Superman\'', 
'')

INSERT INTO table ( `col_1`, `col_2` )
VALUES ( 'val_for_col1', 'val_for_col2' ),    -- This inserts a row
       ( 'val_for_col1', 'val_for_col2' )     -- This inserts another row


From http://dev.mysql.com/doc/refman/5.5/en/insert.html

INSERT statements that use VALUES syntax can insert multiple rows. To do this, 
include multiple lists of column values, each enclosed within parentheses and 
separated by commas. Example:

INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9);
The values list for each row must be enclosed within parentheses. The following 
statement is illegal because the number of values in the list does not match 
the number of column names:

INSERT INTO tbl_name (a,b,c) VALUES(1,2,3,4,5,6,7,8,9);
VALUE is a synonym for VALUES in this context. Neither implies anything about 
the number of values lists, and either may be used whether there is a single 
values list or multiple lists.

Original comment by [email protected] on 12 Mar 2012 at 2:34

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
Ah, ok. Thanks. Try the version on 
https://www.phosco.info/publicsvn/php-sql-parser/trunk REV 139. I have enhanced 
the output, so your code could have problems with it.

Original comment by [email protected] on 12 Mar 2012 at 2:42

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
Thanks for your quick feedback and continued efforts with this project. Just 
tried REV 140 with no luck. Still can replicate the problem using the following.

<?php

require("php-sql-parser.php");
require("php-sql-creator.php");

error_reporting( E_ALL );
ini_set( 'display_errors', 1 );

$sql = "INSERT INTO test (`name`, `test`) VALUES ('\'Superman\'', ''), 
('\'sdfsd\'', '')";

$parser = new PHPSQLParser($sql);


echo "<pre>";
print_r( new PHPSQLCreator( $parser->parsed ) );

Original comment by [email protected] on 12 Mar 2012 at 3:11

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
Hm, I have added tests for the issue, which seems to be ok. Please check your 
browser cache settings or checkout the version with a Subversion client.

If I execute your test script with the current version, I will get:

PHPSQLCreator Object
(
    [created] => INSERT INTO test (`name`,`test`) VALUES ('\'Superman\'',''),('\'sdfsd\'','')
)

This is the same statement as provided in $sql (except some space characters).

Original comment by [email protected] on 12 Mar 2012 at 8:05

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
Apologies, it was indeed my browser cache.

However, REV 141 now has

Fatal error: Multiple access type modifiers are not allowed in 
C:\xampp\htdocs\php-sql-parser.php on line 1620

private private function process_record($unparsed) {

At least that one's an easy fix :D


Original comment by [email protected] on 13 Mar 2012 at 9:29

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
Is the issue fixed with the current version (REV 186)?

Original comment by [email protected] on 13 Mar 2012 at 12:05

  • Changed state: Started

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
It is indeed. REV 186 does not present the multiple access type modifiers error.

Original comment by [email protected] on 13 Mar 2012 at 12:12

from php-sql-parser.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 16, 2024
:-)

Original comment by [email protected] on 13 Mar 2012 at 12:15

  • Changed state: Fixed

from php-sql-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.