dotConnect for MySQL Documentation
Devart.Data.MySql Namespace / MySqlStatementType Enumeration

In This Topic
    MySqlStatementType Enumeration
    In This Topic
    Describes type of a MySQL command line tool command. The functionality of the corresponding commands is given below.
    Syntax
    'Declaration
     
    Public Enum MySqlStatementType 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    public enum MySqlStatementType : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberDescription
    CharSetRepresents the charset command. Switches to another charset.
    ClearRepresents the clear command. This command clears the current clause or setting for the specified option.
    ConnectRepresents the connect command. Reconnects to the server. Optional arguments are db and host.
    DelimiterRepresents the delimiter command. This command sets the statement delimiter. It takes the rest of the line as the new delimiter value.
    DoRepresents a shorthand for SELECT expr.
    EditReprents the EDIT command. This command invokes a text editor, specified in the EDITOR or VISUAL environment variable for editing the current command. It works only in Unix.
    EgoRepresents the ego command. Sends a command to mysql server and displays the result vertically.
    ExitRepresents the EXIT command. Exits MySQL command line tool.
    GoRepresents
    HelpRepresents the help command. Displays help for MySQL command line tool commands.
    NoPagerRepresents the nopager command. This command disables the pager and enables printing to stdout.
    NoTeeRepresents the notee command. This command disables writing into outfile.
    NoWarningRepresents the nowarning command. This command disables displaying warning after each statement.
    PagerRepresents the pager command. This command sets PAGER and enables printing query results via this pager.
    PrintRepresents the print command. This command prints the current command.
    PromptRepresents the prompt command. This command changes the prompt of the MySQL command line tool to the specified string.
    QuitRepresents the quit command. This command exits the MySQL command line tool.
    RehashRepresents the rehash command. This command rebuilds the statement completion hash and enables the code completion.
    SourceRepresents the source command. This command executes SQL script file, specified as a parameter.
    StatusRepresents the status command. This command displays status information about the connection and the server.
    SystemRepresents the system command. This command executes the specified command with the default system command interpreter. It works only on unix.
    TeeRepresents the tee command. This command enables logging statements and their output to the specified output file.
    UnknownRepresents a command that was not recognized or was not a command.
    UseRepresents the use command. This command switches to another database.
    WarningsRepresents the warning command. This command enables displaying warnings after each statements if there are any.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Devart.Data.MySql.MySqlStatementType

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also