C# 클래스 MySql.Data.MySqlClient.PreparableStatement

Summary description for PreparedStatement.
상속: Statement
파일 보기 프로젝트 열기: elevate/mysqlconnector-.net 1 사용 예제들

공개 메소드들

메소드 설명
CloseStatement ( ) : void
Execute ( ) : void
ExecuteNext ( ) : bool
PreparableStatement ( MySqlCommand command, string text ) : System
Prepare ( ) : void

비공개 메소드들

메소드 설명
PrepareCommandText ( string &stripped_sql ) : List

Prepares CommandText for use with the Prepare method

Takes the output of TokenizeSql and creates a single string of SQL that only contains '?' markers for each parameter. It also creates the parameterMap array list that includes all the paramter names in the order they appeared in the SQL

메소드 상세

CloseStatement() 공개 메소드

public CloseStatement ( ) : void
리턴 void

Execute() 공개 메소드

public Execute ( ) : void
리턴 void

ExecuteNext() 공개 메소드

public ExecuteNext ( ) : bool
리턴 bool

PreparableStatement() 공개 메소드

public PreparableStatement ( MySqlCommand command, string text ) : System
command MySqlCommand
text string
리턴 System

Prepare() 공개 메소드

public Prepare ( ) : void
리턴 void