/// <summary>
 /// Creates a <see cref="Statement"/> object for sending SQL statements to the database.
 /// SQL statements without parameters are normally executed using Statement objects.
 /// If the same SQL statement is executed many times, it may be more efficient to use a <see cref="PreparedStatement"/> object.
 /// </summary>
 /// <returns>a new default <see cref="Statement"/> object</returns>
 public Statement CreateStatement()
 {
     return(new Statement(_connection.CreateStatement()));
 }