LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1124|回复: 3

求python执行sqlite 数据库的接口函数。

[复制链接]
发表于 2005-8-23 08:34:06 | 显示全部楼层 |阅读模式
谢谢. thanks
发表于 2005-8-23 09:49:45 | 显示全部楼层
google search python sqlite
回复 支持 反对

使用道具 举报

发表于 2005-8-23 14:41:53 | 显示全部楼层
In [2]: import sqlite

In [3]: dir sqlite
------> dir(sqlite)
Out[3]:
['BINARY',
'Binary',
'Connection',
'Cursor',
'DATE',
'DBAPITypeObject',
'DataError',
'DatabaseError',
'Error',
'INT',
'IntegrityError',
'InterfaceError',
'InternalError',
'NUMBER',
'NotSupportedError',
'OperationalError',
'PgResultSet',
'ProgrammingError',
'ROWID',
'STRING',
'TIME',
'TIMESTAMP',
'UNICODESTRING',
'Warning',
'__all__',
'__builtins__',
'__doc__',
'__file__',
'__name__',
'__path__',
'__revision__',
'_sqlite',
'apilevel',
'connect',
'decode',
'encode',
'main',
'paramstyle',
'threadsafety',
'version',
'version_info']

In [4]:
In [4]: help sqlite
------> help(sqlite)

  1. Help on package sqlite:

  2. NAME
  3.     sqlite

  4. FILE
  5.     /usr/lib/python2.3/site-packages/sqlite/__init__.py

  6. PACKAGE CONTENTS
  7.     main

  8. FUNCTIONS
  9.     Binary = encode(...)
  10.         encode(s) -> encoded binary string.
  11.         Encode binary string 's' for storage in SQLite.

  12.     connect(*args, **kwargs)

  13.     decode(...)
  14.         decode(s) -> decoded binary string.
  15.         Decode encoded binary string retrieved from SQLite.

  16.     encode(...)
  17.         encode(s) -> encoded binary string.
  18.         Encode binary string 's' for storage in SQLite.

  19. DATA
  20.     BINARY = <sqlite.main.DBAPITypeObject instance>
  21.     DATE = <sqlite.main.DBAPITypeObject instance>
  22.     INT = <sqlite.main.DBAPITypeObject instance>
  23.     NUMBER = <sqlite.main.DBAPITypeObject instance>
  24.     ROWID = <sqlite.main.DBAPITypeObject instance>
  25.     STRING = <sqlite.main.DBAPITypeObject instance>
  26.     TIME = <sqlite.main.DBAPITypeObject instance>
  27.     TIMESTAMP = <sqlite.main.DBAPITypeObject instance>
  28.     UNICODESTRING = <sqlite.main.DBAPITypeObject instance>
  29.     __all__ = ['connect', 'IntegrityError', 'InterfaceError', 'InternalErr...
  30.     __revision__ = '1.22'
  31.     apilevel = '2.0'
  32.     paramstyle = 'pyformat'
  33.     threadsafety = 1
  34.     version = '1.0.1'
  35.     version_info = (1, 0, 1)
复制代码
回复 支持 反对

使用道具 举报

发表于 2005-8-25 10:10:57 | 显示全部楼层
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表