Aquileo | Recent changes to feature-requestshttps://sourceforge.net/p/kinterbasdb/feature-requests/Recent changes to feature-requestsenFri, 29 Jun 2007 15:31:47 -0000Aquileo | Expose all of the isc_dpb_shut_* constantshttps://sourceforge.net/p/kinterbasdb/feature-requests/10/<div class="markdown_content"><p>Expose these constants in both KIDB 3.2.1 and 3.3.x.</p> <p>See forum discussion:<br /> <a href="http://sourceforge.net/forum/forum.php?thread_id=1766485&amp;forum_id=30917">http://sourceforge.net/forum/forum.php?thread_id=1766485&amp;forum_id=30917</a></p></div>David S. RushbyFri, 29 Jun 2007 15:31:47 -0000https://sourceforge.net02e2990daad30df5c6f03473a13e451562841fd5Aquileo | description for prepared statimenthttps://sourceforge.net/p/kinterbasdb/feature-requests/9/<div class="markdown_content"><p>Requere property description for prepared statiment.</p> <p>Sample code:<br /> curs = conn.cursor()<br /> curs2 = = conn.cursor()<br /> curs.execute(outer_sql)<br /> prepare_outer_space(curs.description)<br /> for orow in curs:<br /> out_outer(orow)<br /> curs2.execute(inner_sql, orow[0])<br /> if not is_inner_space_prepared():<br /> prepare_inner_space(curs2.description)<br /> for irow in curs2:<br /> out_inner(irow)</p> <p>Replace sample:<br /> #Prepared<br /> curs = conn.cursor()<br /> p_outer_sql = curs.prep(outer_sql)<br /> prepare_outer_space(p_outer_sql.description)<br /> curs2 = conn.cursor()<br /> p_inner_sql = curs.prep(inner_sql)<br /> prepare_inner_space(p_inner_sql.description)<br /> #Executed<br /> curs.execute(p_outer_sql)<br /> for orow in curs:<br /> out_outer(orow)<br /> curs2.execute(p_inner_sql, orow[0])<br /> for irow in curs2:<br /> out_inner(irow)</p> <p>===Russion===<br /> Хотелось бы уметь получать описание полей запроса из<br /> prepared statiment-а.<br /> Сейчас для этой цели приходится выполнять дополнительный<br /> запрос, или анализировать - первое ли это выролнение.<br /> Код получается несколько запутанный и смешанный. ;-)</p></div>Alexandr Zamaraev (aka Tonal)Mon, 24 Apr 2006 07:28:49 -0000https://sourceforge.net0b16fba0474b608dc0ae7af6b83a54dca42e9019Aquileo | Event APIhttps://sourceforge.net/p/kinterbasdb/feature-requests/8/<div class="markdown_content"><p>I added a wrapper for the event API - it may be found<br /> in the patches. Please don't hesitate to contact me if<br /> there's a slight problem with them - my email address<br /> is vandy899 at yahoo dot com</p></div>Michael van der KolffSun, 13 Mar 2005 01:28:12 -0000https://sourceforge.net9271b9f6b32b87a6a97765195d8af91e4b6f3695Aquileo | rowmapping 2https://sourceforge.net/p/kinterbasdb/feature-requests/7/<div class="markdown_content"><p>you need this too</p> <p>def __nonzero__(self):<br /> if self._fields:<br /> return True<br /> return False</p></div>AnonymousFri, 12 Nov 2004 13:50:59 -0000https://sourceforge.net51f5fc62e432f626572a512d76d05e052b131e40Aquileo | rowmapping https://sourceforge.net/p/kinterbasdb/feature-requests/6/<div class="markdown_content"><p>can you add this methods to _RowMapping classs<br /> this make row acess via row.fieldname</p> <p>def __eq__(self,other):<br /> return False</p> <p>def __getattr__(self,fieldName):<br /> return self[fieldName]</p></div>AnonymousFri, 12 Nov 2004 13:47:09 -0000https://sourceforge.neta9e511c20113525fc8d0b5af73905afd927a2171Aquileo | python 2.4 decimal supporthttps://sourceforge.net/p/kinterbasdb/feature-requests/5/<div class="markdown_content"><p>As there is new decimal type in python 2.4 - is it<br /> possible to use it instead of fixedpoint?</p></div>Oleg DeribasSun, 31 Oct 2004 14:09:57 -0000https://sourceforge.net67ff2d893fe51762ff1edb4f0970f57835b4b734Aquileo | role supporthttps://sourceforge.net/p/kinterbasdb/feature-requests/4/<div class="markdown_content"><p>Ray Drew brought to my attention the lack of support<br /> for role specification in kinterbasdb 3.0.</p> <p>I'm filing this feature request in order to document<br /> that lack and its fix (coming soon to CVS).</p> <p>See this forum discussion:<br /> <a href="http://sourceforge.net/forum/forum.php?thread_id=686367&amp;amp;forum_id=30917">http://sourceforge.net/forum/forum.php?thread_id=686367&amp;amp;forum_id=30917</a></p></div>David S. RushbySun, 09 Jun 2002 22:51:19 -0000https://sourceforge.netd6bf22c3c6fe48d053dc51845f64c0532a89d69dAquileo | gen_id() wrapper neededhttps://sourceforge.net/p/kinterbasdb/feature-requests/3/<div class="markdown_content"><p>I like to see a python wrapper to gen_id() function,<br /> becouse i don't want to write a before insert trigger.</p> <p>Now i can use GNUe forms triggers (in client side),<br /> and remain db independent. But only with this trick:</p> <p>select gen_id() from rdb$database</p> <p>in GNUe interbase driver.</p> <p>Bajusz Tamás</p></div>Bajusz TamásFri, 24 May 2002 12:31:10 -0000https://sourceforge.net2960db658d1ee2b995a845e0268d36e8e4bc12fbAquileo | execute method too restrictive re paramshttps://sourceforge.net/p/kinterbasdb/feature-requests/2/<div class="markdown_content"><p>The Cursor.execute method *demands* a tuple as its<br /> parameter sequence. It seems to me that any sequence<br /> should be accepted; that would be more Pythonic.</p></div>David S. RushbyWed, 03 Apr 2002 14:16:08 -0000https://sourceforge.netc45971eea719d3f30f087f6de0f54ca8e8cc4c69Aquileo | if long fits into integer return as inthttps://sourceforge.net/p/kinterbasdb/feature-requests/1/<div class="markdown_content"><p>Hi,</p> <p>I'm using kinterbase with zope. In this context I need<br /> an integer in the database returned as Py_int and not<br /> as Py_long. With long datatype the tree in zope will<br /> not work <br /> correctly. This problem is known from gvib.</p> <p>I fixed the current version of kinterbase to return the <br /> value properly.</p> <p>see attached file ;-)</p></div>Maik WojcieszakTue, 26 Feb 2002 16:46:03 -0000https://sourceforge.net382aff4914869fd03845ce086c7a801541e36edc