Show / Hide Table of Contents

Class SqlOptions

Inheritance
Object
SqlOptions
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Slipe.Sql
Assembly: Slipe.Sql.dll
Syntax
public class SqlOptions

Properties

| Improve this Doc View Source

AutoReconnect

Whether the connection should automatically attempt to reconnect if connection is lost

Declaration
public bool AutoReconnect { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Batch

Whether the connection should batch multiple queries into one call

Declaration
public bool Batch { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Log

Whether the queries executed on the connection should be logged

Declaration
public bool Log { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Multi_statements

Whether the connection should support running multiple statements at once

Declaration
public bool Multi_statements { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Share

Whether the connection should be shared with other scripts

Declaration
public bool Share { get; set; }
Property Value
Type Description
Boolean
| Improve this Doc View Source

Surpress

List of errors / warnings to surpress

Declaration
public string[] Surpress { get; set; }
Property Value
Type Description
String[]
| Improve this Doc View Source

Tag

Tag for this connection to easily identify it in MySql server logs

Declaration
public string Tag { get; set; }
Property Value
Type Description
String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX