<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY style="FONT: 10pt Courier New" leftMargin=5 topMargin=5>
<DIV>
<DIV>I have been searching the net for two weeks now but can find nothing on 
disconnected recordsets.</DIV>
<DIV>&nbsp;</DIV>
<DIV>I have been programming in VB6 for two years and have had quite a success 
with disconnected resordsets with the following code:-</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp; Dim acUpdateable As Connection<BR>&nbsp;&nbsp;&nbsp; 
<BR>&nbsp;&nbsp;&nbsp; Set acUpdateable = New Connection<BR>&nbsp;&nbsp;&nbsp; 
acUpdateable.Open gBRDataBase<BR></DIV>
<DIV>&nbsp;&nbsp;&nbsp; Set rsUpdateable = New 
ADODB.Recordset<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
rsUpdateable.CursorLocation = adUseClient<BR>&nbsp;&nbsp;&nbsp; 
rsUpdateable.LockType = adLockBatchOptimistic<BR>&nbsp;&nbsp;&nbsp; 
rsUpdateable.CursorType = adOpenForwardOnly</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp; rsUpdateable.Open sSQL, 
acUpdateable<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; 
rsUpdateable.MarshalOptions = adMarshalModifiedOnly<BR>&nbsp;&nbsp;&nbsp; Set 
rsUpdateable.ActiveConnection = Nothing<BR>&nbsp;&nbsp;&nbsp; 
acUpdateable.Close<BR>&nbsp;&nbsp;&nbsp; Set acUpdateable = Nothing</DIV>
<DIV>&nbsp;</DIV>
<DIV>I can implement most of this within Python but not the bit after 
Marshalling.</DIV>
<DIV>&nbsp;</DIV>
<DIV>I can read and write to the database but as soon as I try to disconnect the 
recordset Python cannot see the cursor.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Is it possible to use disconnected recordsets with Python and if so where 
can I find information on the subject.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Any help you can offer would be gratefully received.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Martin</DIV>
<DIV><BR>&nbsp;</DIV></DIV></BODY></HTML>