ParseStatementList not working on valid SQL statement - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:20:20Z http://stackoverflow.com/feeds/question/756384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/756384/parsestatementlist-not-working-on-valid-sql-statement 1 ParseStatementList not working on valid SQL statement manu08 2009-04-16T14:29:37Z 2009-04-16T14:29:37Z <p>I'm trying to use the TSql100Parser.ParseStatementList method to programatically parse sql statements and pull out object names. This is from the Microsoft.Data.Schema.ScriptDom.Sql namespace. Here's the code:</p> <pre><code>string sql = "CREATE VIEW testView AS SELECT * from testTable"; var parser = new TSql100Parser(false); StatementList parsedStatements; IList errrors; using (TextReader reader = new StringReader(sql)) { parsedStatements = parser.ParseStatementList(reader, out errors); } </code></pre> <p>The ParseStatementList method returns null, and inserts two errors to the errors list. The errors are "Invalid syntax near CREATE" and "Invalid syntax near VIEW." This is weird because the same sql statement is successfully parsed by the TSql100.Parse method. What's also weird is that the above code successfully parses the SQL "DROP VIEW testView"</p> <p>Any ideas why it won't parse my view creation sql? Thanks!</p>