29 return query.User().Name;
34 return new Query(systemSession);
38 return query.
Context.IgnoreIdentifiersCase();
42 query.
Context.IgnoreIdentifiersCase(value);
46 query.
Context.AutoCommit(value);
50 return query.
Context.AutoCommit();
54 return query.
Context.CurrentSchema();
58 query.
Context.CurrentSchema(value);
62 query.
Context.ParameterStyle(value);
66 return query.
Context.ParameterStyle();
static void Rollback(this IQuery query)
static void CurrentSchema(this IQuery query, string value)
void Rollback()
Rolls-back all the modifications made by the user in this session
void Commit()
Commits the latest changes made by the user in the session.
static QueryParameterStyle ParameterStyle(this IQuery query)
static IQuery Direct(this IQuery query)
static void AutoCommit(this IQuery query, bool value)
ITransaction Transaction
Gets the instance of ITransaction that handles the transactional operations of this session...
static string CurrentSchema(this IQuery query)
static void ParameterStyle(this IQuery query, QueryParameterStyle value)
static void IgnoreIdentifiersCase(this IQuery query, bool value)
static bool AutoCommit(this IQuery query)
string CurrentSchema
Gets the name of the current schema of this session.
QueryParameterStyle
In a SQL query object, this is the form of parameters passed from the client side to the server side...
static bool IgnoreIdentifiersCase(this IQuery query)
static string UserName(this IQuery query)
static void Commit(this IQuery query)
Provides the information for a user in a database system
new IQueryContext Context
static User User(this IQuery query)