DeveelDB
20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
|
This class is used to transform an input query to a set of statements and execute them within a given query. More...
Classes | |
class | QueryPreparer |
Static Public Member Functions | |
static ITable[] | Execute (IRequest query, SqlQuery sqlQuery) |
This method transforms the input SQL query into a set of statements, prepares and executes them against the provided query. More... | |
This class is used to transform an input query to a set of statements and execute them within a given query.
Definition at line 32 of file StatementExecutor.cs.
|
inlinestatic |
This method transforms the input SQL query into a set of statements, prepares and executes them against the provided query.
query | The query used to prepare and execute the statements resolved from the compilation of the input query. |
sqlQuery | The input SQL query with optional parameters, that is compiled into a set of statements to be executed. |
The method first tries to resolve the compiled statements from the specialized cache (StatementCache) from the system, to reduce the compilation time.
Definition at line 49 of file StatementExecutor.cs.