Differences between revisions 5 and 6
Revision 5 as of 2005-10-10 06:14:20
Size: 228
Editor: 62
Comment:
Revision 6 as of 2005-10-10 11:10:51
Size: 1221
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
The Best monitor Directory on the Web #pragma section-numbers off
[[TableOfContents]]
Line 3: Line 4:
http://www.monitordirectory.vip.su == Masthead ==
Line 5: Line 6:
Monitor Directory has delivered to the market scores of standard and custom products and software solutions.   URL:: http://www.sapdb.org/
  licence:: GPL
  platforms:: Linux/i386, Solaris, HP-UX, AIX, Dec, Windows
Line 7: Line 10:
http://www.monitordirectory.vip.su == DB API 2.0 Drivers ==

=== sapdbapi ===

  URL:: http://www.sapdb.org/sap_db_program.htm
  licence:: LGPL
  platforms:: see SAP DB
  Python versions:: 1.5.2 - 2.2

==== Extensions to DB API ====

==== Comments ====

== Other Drivers ==

=== sapdb ===

  URL:: http://www.sapdb.org/sap_db_program.htm
  licence:: LGPL
  platforms:: see SAP DB
  Python versions:: 1.5.2 - 2.2

==== Programming Model ====
{{{
cursor = session.sql ("select * from messages")
for msgno, lang, text in cursor:
    print msgno, text

insert = session.prepare ("insert into sometable values (?, ?)")
print insert.getDescription ()
insert.execute (["string", 1])

select = session.prepare ("select * from messages where msgno < :msgno")
cursor = select.execute ([200])
print cursor.next ()
print cursor.relative (100)
print cursor.absolute (4)
print cursor.absolute (-4)
}}}
==== Comments ====

== Supported Python Applications ==
 * a sapdb driver exists for ["PyDO"] (Python Data Objects)

== Pros ==

== Cons ==

TableOfContents

Masthead

URL

http://www.sapdb.org/

licence
GPL
platforms
Linux/i386, Solaris, HP-UX, AIX, Dec, Windows

DB API 2.0 Drivers

sapdbapi

URL

http://www.sapdb.org/sap_db_program.htm

licence
LGPL
platforms
see SAP DB
Python versions
1.5.2 - 2.2

Extensions to DB API

Comments

Other Drivers

sapdb

URL

http://www.sapdb.org/sap_db_program.htm

licence
LGPL
platforms
see SAP DB
Python versions
1.5.2 - 2.2

Programming Model

cursor = session.sql ("select * from messages")
for msgno, lang, text in cursor:
    print msgno, text

insert = session.prepare ("insert into sometable values (?, ?)")
print insert.getDescription ()
insert.execute (["string", 1])

select = session.prepare ("select * from messages where msgno < :msgno")
cursor = select.execute ([200])
print cursor.next ()
print cursor.relative (100)
print cursor.absolute (4)
print cursor.absolute (-4)

Comments

Supported Python Applications

  • a sapdb driver exists for ["PyDO"] (Python Data Objects)

Pros

Cons

SAP DB (last edited 2013-08-11 12:31:35 by MarcAndreLemburg)

Unable to edit the page? See the FrontPage for instructions.