I am planning to add, as an extension, the ability for adodbapi to change its paramstyle.  I personally like &quot;named&quot; much better than &quot;qmark&quot;, and it happens that django expects to have &quot;format&quot;, so I will add that, too.<br>

<br>My question is, what would be an appropriate way to specify the altered paramstyle?  <br><br>1) As an attribute of the connection:<br>    con = adodbapi.connect(&#39;spam eggs&quot;)<br>    con.paramstyle = &quot;named&quot;<br>

<br>2) Make the module global mutable:<br>   adodbapi.adodbapi.paramstyle = &quot;named&quot;  # [ ick! ]<br><br>3) As a named parameter of the connection:<br>  con = adodbapi.connect(&quot;spam eggs&quot;, paramstyle=&quot;named&quot;)<br>

<br>Has anyone else done this?  <br>How did they do it?  <br>How will some speculated future db-api version 3.0 want it?<br>--<br>Vernon Cole<br><br>