Connection.register

Manually register a prepared statement on this connection.

Does nothing if statement is already registered on this connection.

Calling this is not strictly necessary, as the prepared statement will automatically be registered upon its first use on any Connection. This is provided for those who prefer eager registration over lazy for performance reasons.

  1. void register(Prepared prepared)
  2. void register(const(char[]) sql)
    class Connection
    void
    register
    (
    const(char[]) sql
    )

Meta