Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #28747

Re: simple client data base

From Dennis Lee Bieber <wlfraed@ix.netcom.com>
Subject Re: simple client data base
Date 2012-09-08 17:42 -0400
Organization > Bestiaria Support Staff <
References <lae9489ct99mp704um93sdqlatofb2i8gq@4ax.com> <CAPTjJmpHPE=SdE_XJtdi4DMFVeWa8Exo3Arsu13Hd8fgSuZ5bw@mail.gmail.com> <mailman.145.1346683813.27098.python-list@python.org> <5l6n489vo896k565a4m5bjgl714qgickqg@4ax.com>
Newsgroups comp.lang.python
Message-ID <mailman.393.1347140580.27098.python-list@python.org> (permalink)

Show all headers | View raw


On Sat, 08 Sep 2012 15:22:24 -0400, Mark R Rivet <markrrivet@aol.com>
declaimed the following in gmane.comp.python.general:

> Yes, that's the reason. I need to learn something. Without getting
> into the complexities of relational database's for now.

	Given the ease of use of SQLite3, I think you'd be better served by
using an RDBM rather then try to manage persistence of Python in-memory
objects (pickle is not guaranteed to be compatible between versions of
Python; and for all these schemes you become responsible for loading and
saving a block of data using Python level instructions. RDBM interfaces
normally take care of translating the low-level entities between Python
and database format; you don't have to develop search and filter logic
to manage subsets of the data, etc.).

	There is even a plugin for Mozilla -- SQLite Manager -- since
Mozilla uses SQLite3 internally, which can give you rudimentary
graphical access to raw databases (so you can debug the data in the
database while developing the application code to "properly" access the
data).

	Dabo is attempting to be a Python "Visual FoxPro" equivalent.
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
        wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

simple client data base Mark R Rivet <markrrivet@aol.com> - 2012-09-03 10:12 -0400
  Re: simple client data base "Martin P. Hellwig" <martin.hellwig@gmail.com> - 2012-09-03 07:27 -0700
  Re: simple client data base Chris Angelico <rosuav@gmail.com> - 2012-09-04 00:28 +1000
  Re: simple client data base Mark Lawrence <breamoreboy@yahoo.co.uk> - 2012-09-03 15:37 +0100
  Re: simple client data base Peter Otten <__peter__@web.de> - 2012-09-03 16:50 +0200
    Re: simple client data base Mark R Rivet <markrrivet@aol.com> - 2012-09-08 15:22 -0400
      Re: simple client data base Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-09-08 17:42 -0400
  Re: simple client data base Wolfgang Keller <feliphil@gmx.net> - 2012-09-03 18:03 +0200
    Re: simple client data base Walter Hurry <walterhurry@lavabit.com> - 2012-09-03 19:02 +0000
      Re: simple client data base Wolfgang Keller <feliphil@gmx.net> - 2012-09-04 15:17 +0200
  Re: simple client data base Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2012-09-04 04:25 +0200
    Re: simple client data base Mark R Rivet <markrrivet@aol.com> - 2012-09-08 15:40 -0400
      Re: simple client data base Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2012-09-11 13:28 +0200
  Re: simple client data base Ramchandra Apte <maniandram01@gmail.com> - 2012-09-05 05:57 -0700
    Re: simple client data base Mark R Rivet <markrrivet@aol.com> - 2012-09-08 15:42 -0400
  Re: simple client data base Bryan <bryanjugglercryptographer@yahoo.com> - 2012-09-06 01:57 -0700
    Re: simple client data base Mark R Rivet <markrrivet@aol.com> - 2012-09-08 15:47 -0400
      Re: simple client data base Jason Friedman <jason@powerpull.net> - 2012-09-08 14:05 -0600
      Re: simple client data base Paul Rubin <no.email@nospam.invalid> - 2012-09-08 13:11 -0700
        Re: simple client data base Ian W <mymixedmess@gmail.com> - 2012-09-08 15:32 -0500
        Re: simple client data base Walter Hurry <walterhurry@lavabit.com> - 2012-09-08 20:39 +0000
      Re: simple client data base Jorgen Grahn <grahn+nntp@snipabacken.se> - 2012-09-08 21:03 +0000
      Re: simple client data base Bryan <bryanjugglercryptographer@yahoo.com> - 2012-09-09 09:06 -0700
      Re: simple client data base Tim Chase <python.list@tim.thechases.com> - 2012-09-09 13:27 -0500
        Re: simple client data base Paul Rubin <no.email@nospam.invalid> - 2012-09-09 11:55 -0700

csiph-web