[python-win32] Re: Blob fields

Roger Upole rwupole at msn.com
Sun Mar 9 21:56:46 CET 2008


> Hi,
> 
> I want to play with blobs in ms-access. Is there any documentation or
> python examples using ADO for AppendChunk and GetChunk? Would that be
> the best way to do it - w/ADO? Googling it but so far not much I can
> find.
> 
> Thanks,
> Lee G.

This is fairly simple using ADO.

import win32com.client
dbname='tmp.mdb'
c=win32com.client.gencache.EnsureDispatch('adodb.connection',0)
c.Open("Driver={Microsoft Access Driver (*.mdb)};Dbq=%s;" %dbname)
rs, rc=c.Execute('select tmp1 from tmp')

print rs.Fields[0].GetChunk(100)

Using AppendChunk on an updateable recordset should be just as simple.

       Roger



More information about the python-win32 mailing list