Re: [cx-oracle-users] UPDATE examples
Brought to you by:
atuining
From: Anurag C. <anu...@gm...> - 2010-11-18 06:28:21
|
Hi Robert, Are you looking at something like this? connection = cx_Oracle.connect(Connection_String) cursor = connection.cursor() query = "UPDATE <TABLE> SET <COLUMN>=<VALUE> WHERE <Where Clause>" cursor.execute(str(query)) connection.commit() Regards, Anurag On Thu, Nov 18, 2010 at 11:44 AM, Robert <web...@gm...> wrote: > I searched "cx_Oracle-doc" folder for UPDATE examples but can not find > any. (even Google can't seem to find any, sigh) > > please provide an UPDATE example (with parameters) > > > thanks > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > cx-oracle-users mailing list > cx-...@li... > https://lists.sourceforge.net/lists/listinfo/cx-oracle-users > |