Prepare method

Pre-compiles and stores the SQL statement of this command.

Syntax
Visual Basic
Public Overrides Sub Prepare()
C#
public override void Prepare();
Remarks

Pre-compiling statements allows for the efficient re-use of statements when just the parameter values are changed. Changing any other property on this command unprepares the statement.

UltraLite.NET does not require you to explicitly prepare statements as all unprepared commands are prepared on calls to the various Execute methods.

See also