当前页面:
在线文档首页 >
Hibernate 3.2.4 正式版 API 英文文档
ParameterParser (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档
org.hibernate.engine.query
Class ParameterParser
java.lang.Object
org.hibernate.engine.query.ParameterParser
- public class ParameterParser
- extends Object
The single available method parse(java.lang.String, org.hibernate.engine.query.ParameterParser.Recognizer)
is responsible for parsing a
query string and recognizing tokens in relation to parameters (either
named, JPA-style, or ordinal) and providing callbacks about such
recognitions.
- Author:
- Steve Ebersole
Method Summary |
static void |
parse(String sqlString,
ParameterParser.Recognizer recognizer)
Performs the actual parsing and tokenizing of the query string making appropriate
callbacks to the given recognizer upon recognition of the various tokens. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
parse
public static void parse(String sqlString,
ParameterParser.Recognizer recognizer)
throws QueryException
- Performs the actual parsing and tokenizing of the query string making appropriate
callbacks to the given recognizer upon recognition of the various tokens.
Note that currently, this only knows how to deal with a single output
parameter (for callable statements). If we later add support for
multiple output params, this, obviously, needs to change.
- Parameters:
sqlString
- The string to be parsed/tokenized.recognizer
- The thing which handles recognition events.
- Throws:
QueryException