[BangPypers] Can we create proprietary database in Python

srid sridhar.ratna at gmail.com
Mon Sep 28 06:46:27 CEST 2009


On Sat, Sep 26, 2009 at 12:15 PM, Arun Python <arunpython at ymail.com> wrote:
>
> b) Can we create proprietary or sequential database like in C++
> in python for database applications which are not so huge.

> Sequential database in the sense, like creating a data structure
> in the class and getting data from the user and storing it as a file.

sqlalchemy + sqlite may fit your use case. sqlalchemy provides this
"datastructure in the class" (class mappers) and sqlite stores your
database in a file (no servers). quick start:
http://www.rmunn.com/sqlalchemy-tutorial/tutorial.html

-srid


More information about the BangPypers mailing list