Function MySQLPoolImpl.isAutoCleared

Is the given statement set for NEITHER auto-register NOR auto-release on connections obtained from this connection pool?

bool isAutoCleared (
  SafePrepared prepared
) @safe;

bool isAutoCleared (
  const(char[]) sql
) @safe;

bool isAutoCleared (
  Nullable!PreparedInfo info
) @safe;

Equivalent to !isAutoRegistered && !isAutoReleased.