Re: [DB-SIG] About LOB

2011-05-03 Thread Kwon, Chan Young
Hi Lemburg, There is no documentation on the web open to external access. Our new DB project is little bit confidential. I can just send you a copy of wiki page inside my company's intranet. My LOB is also file-like object. So it has just two interfaces. One is read() The other is write() Differe

Re: [DB-SIG] About LOB

2011-05-03 Thread Kwon, Chan Young
* LOB o read(size[,position]) o write(data[,position]) o find(data[,position]) Best wishes, Chanyoung Kwon SAP R&D Center Korea _ From: Kwon, Chan Young Sent: Tuesday, May 03, 2011 3:45 PM To: 'M.-A. Lemburg' Cc: Chris Clark

Re: [DB-SIG] About LOB

2011-05-03 Thread Kwon, Chan Young
Source code sample def test_LobInsertWithPieceWiseLOB(self): """Piece-wise LOB INSERT""" old_mode = self.conn.getautocommit() self.conn.setautocommit(False) cur = self.conn.cursor() try: cur.execute("DROP TABLE PIECEWISE_LOB_TEST") exc