| Package | Description |
|---|---|
| org.soulwing.jdbc.source |
SQL source code input support
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceSQLSource |
ResourceSQLSource.with(String location)
Creates a new SQL source for a resource relative to the root of the
classpath, which uses the
default encoding. |
static ResourceSQLSource |
ResourceSQLSource.with(String name,
Class<?> relativeToClass)
Creates a new SQL source for a resource in the same package as the given
class, which uses the
default encoding. |
static ResourceSQLSource |
ResourceSQLSource.with(String name,
Class<?> relativeToClass,
String encoding)
Creates a new SQL source for a resource in the same package as the given
class which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(String name,
ClassLoader classLoader)
Creates a new SQL source for a resource relative to the root of the
given class loader, which uses the
default encoding. |
static ResourceSQLSource |
ResourceSQLSource.with(String name,
ClassLoader classLoader,
String encoding)
Creates a new SQL source for a resource relative to the root of the
given class loader, which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(String name,
ResourceSQLSource.ResourceAccessor accessor)
Creates a new SQL source for a resource that will be obtained from the
given resource accessor and which uses the
default encoding. |
static ResourceSQLSource |
ResourceSQLSource.with(String name,
ResourceSQLSource.ResourceAccessor accessor,
String encoding)
Creates a new SQL source for a resource that will be obtained from the
given resource accessor and which uses the
default encoding. |
static ResourceSQLSource |
ResourceSQLSource.with(String location,
String encoding)
Creates a new SQL source for a resource relative to the root of the
classpath, which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(URI location)
Creates a new SQL source for a resource at the specified location,
which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(URI location,
String encoding)
Creates a new SQL source for a resource at the specified location,
which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(URL location)
Creates a new SQL source for a resource at the specified location,
which uses the specified encoding.
|
static ResourceSQLSource |
ResourceSQLSource.with(URL location,
String encoding)
Creates a new SQL source for a resource at the specified location,
which uses the specified encoding.
|
Copyright © 2014–2015 Carl Harris, Jr. All rights reserved.