Back to project page jepldroid.
The source code is released under:
Apache License
If you think the Android project jepldroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* Copyright 2011 Jose Maria Arranz Santamaria /*from ww w . j ava 2s . co m*/ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package jepl.impl.lex; /** * * @author jmarranz */ public class JDBCParamStandardToken extends JDBCParamToken { /** * Creates a new instance of FloatNumber */ public JDBCParamStandardToken(Cursor cursor) { super(cursor.getCurrentPos()); this.end = cursor.getCurrentPos(); } public static boolean isJDBCParamStandardToken(char c,Cursor cursor) { if (c != '?') return false; // Vemos si el siguiente caracter NO es el comienzo de un nmero // (sera el caso de ?1 que es vlido pero no es este token) pues lo que // se espera despus es un espacio, un tabulador, un fin de lnea // una coma, un parntesis (por el caso VALUES(?,?) ) etc. Si siguiera el comienzo de un identificador // (?algo) no lo consideramos como un JDBCParamStandardToken y seguramente dar error de sintaxis SQL // pues yo creo que JDBC exige una separacin. // Descartamos que siga un nmero entero para descartar el caso de params ?1 ?2 etc if (cursor.isLastPos()) return true; // Es un ? al final char c2 = cursor.getNextChar(); if (Identifier.isIdentifierStart(c2)) return false; if (Character.isDigit(c2)) return false; // Es el caso de ?1 etc que es diferente return true; } @Override public String toString() { return "?"; } }