Package | Description |
---|---|
org.h2.engine |
Contains high level classes of the database and classes that don't fit in another sub-package.
|
org.h2.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
org.h2.schema |
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
|
Modifier and Type | Method and Description |
---|---|
static FunctionAlias |
FunctionAlias.newInstance(Schema schema,
int id,
String name,
String javaClassMethod,
boolean force,
boolean bufferResultSetToLocalTemp)
Create a new alias based on a method name.
|
static FunctionAlias |
FunctionAlias.newInstanceFromSource(Schema schema,
int id,
String name,
String source,
boolean force,
boolean bufferResultSetToLocalTemp)
Create a new alias based on source code.
|
Constructor and Description |
---|
JavaFunction(FunctionAlias functionAlias,
Expression[] args) |
Modifier and Type | Method and Description |
---|---|
FunctionAlias |
Schema.findFunction(String functionAlias)
Try to find a user defined function with this name.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.