Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // TSqlParser2 class. "DBMS Security" related - full support.
21 This method is used to extract the table name from a particular sql
22 string - aTableName parameter. Also, the function determines the sql string type -
23 Sql::EDDL, Sql::EDML or Sql::ENone (SELECT sql string).
25 void TSqlParser2::ParseL(const TDesC& aSql)
27 TSqlParser sqlParser(aSql);
28 iStatementType = sqlParser.Type();
29 iTableName.Set(NULL, 0);
30 switch(iStatementType)
33 //It may be a "SELECT" statement. Check the sql and get the table name.
34 if(sqlParser.ParseL(ESqlKeyword_select) == ESqlAsterisk)
36 sqlParser.NextToken();
42 TSqlTokenType t = sqlParser.NextToken();
45 sqlParser.NextToken();
48 sqlParser.ParseL(ESqlKeyword_from);
49 sqlParser.IdentifierL(iTableName);
52 //CREATE/DROP/ALTER statement. There is a table name, but we do not need it.
53 //The caller has to have "SCHEMA" access level, so we do not bother with the table name.
56 //INSERT/UPDATE/DELETE statement. Get the table name.
57 if(sqlParser.Parse(ESqlKeyword_insert))
59 sqlParser.ParseL(ESqlKeyword_into);
61 else if(sqlParser.Parse(ESqlKeyword_update))
66 sqlParser.ParseL(ESqlKeyword_delete);
67 sqlParser.ParseL(ESqlKeyword_from);
69 sqlParser.IdentifierL(iTableName);