Overload | Description |
---|---|
SQLiteScript Constructor() | Initializes a new instance of the SQLiteScript class. |
SQLiteScript Constructor(String) | Initializes a new instance of the SQLiteScript class with the text of the query. |
SQLiteScript Constructor(String,SQLiteConnection) | Initializes a new instance of the SQLiteScript class with the text of the query and a SQLiteConnection object. |
SQLiteScript Constructor(Stream) | Initializes a new instance of the SQLiteScript class with a Stream object to get SQL statements from. |
SQLiteScript Constructor(TextReader) | Initializes a new instance of the SQLiteScript class with a TextReader object to get SQL statements from. |
SQLiteScript Constructor(Stream,SQLiteConnection) | Initializes a new instance of the SQLiteScript class with a Stream object to get SQL statements from and a SQLiteConnection object. |
SQLiteScript Constructor(TextReader,SQLiteConnection) | Initializes a new instance of the SQLiteScript class with a TextReader object to get SQL statements from and a SQLiteConnection object. |