Minister of Conservation (Manitoba)

The Minister of Conservation is a cabinet minister in the province of Manitoba, Canada. It was created in 1999, by a merging of the Ministry of Environment and Ministry of Natural Resources.

The current Conservation Minister of Manitoba is Bill Blaikie.

List of Ministers of Conservation

  Name Party Took Office Left Office
  Oscar Lathlin
New Democratic Party October 5, 1999 September 25, 2002
  Steve Ashton
New Democratic Party September 25, 2002 November 4, 2003
  Stan Struthers
New Democratic Party November 4, 2003 November 3, 2009
  Bill Blaikie New Democratic Party November 3, 2009 incumbent
gollark: Yes.
gollark: Oh, that's declaring the existent of the variable `stmt`.
gollark: Which `let`?
gollark: This lets me do this```javascriptconst getPage = name => SQL`SELECT * FROM pages WHERE name = ${name} ORDER BY updated DESC LIMIT 1`.get() || null```*without* the glaring SQL injection vulnerabilities!
gollark: ```javascriptexport const SQL = (strings, ...params) => { const sql = strings.join("?") let stmt const cachedValue = preparedStatements.get(sql) if (!cachedValue) { stmt = DB.prepare(sql) preparedStatements.set(sql, stmt) } else { stmt = cachedValue } return { get: () => stmt.get.apply(stmt, params), run: () => stmt.run.apply(stmt, params), all: () => stmt.all.apply(stmt, params), statement: stmt }}```observe some stuff from my code.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.