is there an easy way to create a database on the fly and let the user input values

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Eric_Dexter@msn.com

    is there an easy way to create a database on the fly and let the user input values

    I don't realy care what database I use wx.grid or whatever. I
    wan't it to look at a line

    128 9023 23428 exc and create the database or pick something out of the
    file as some sort of a descrition line and then display and allow the
    user to change and add new lines. What is the easiest set of database
    routines to use for such a project???



  • Bruno Desthuilliers

    #2
    Re: is there an easy way to create a database on the fly and letthe user input values

    Eric_Dexter@msn .com wrote:
    I don't realy care what database I use wx.grid or whatever. I
    wan't it to look at a line
    >
    128 9023 23428 exc and create the database or pick something out of the
    file as some sort of a descrition line and then display and allow the
    user to change and add new lines. What is the easiest set of database
    routines to use for such a project???
    I'd go for something like SQLite or Gadfly - or even the standard CSV
    module if there are no need for a relational model.

    --
    bruno desthuilliers
    python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
    p in 'onurb@xiludom. gro'.split('@')])"

    Comment

    • Chris Lambacher

      #3
      Re: is there an easy way to create a database on the fly and let theuser input values

      I've heard good things about Dabo: http://dabodev.com/
      On Wed, Oct 11, 2006 at 09:44:37PM -0700, Eric_Dexter@msn .com wrote:
      I don't realy care what database I use wx.grid or whatever. I
      wan't it to look at a line
      >
      128 9023 23428 exc and create the database or pick something out of the
      file as some sort of a descrition line and then display and allow the
      user to change and add new lines. What is the easiest set of database
      routines to use for such a project???
      >

      >
      --
      http://mail.python.org/mailman/listinfo/python-list

      Comment

      • Eric_Dexter@msn.com

        #4
        Re: is there an easy way to create a database on the fly and let the user input values


        Chris Lambacher wrote:
        I've heard good things about Dabo: http://dabodev.com/
        On Wed, Oct 11, 2006 at 09:44:37PM -0700, Eric_Dexter@msn .com wrote:
        I don't realy care what database I use wx.grid or whatever. I
        wan't it to look at a line

        128 9023 23428 exc and create the database or pick something out of the
        file as some sort of a descrition line and then display and allow the
        user to change and add new lines. What is the easiest set of database
        routines to use for such a project???



        --
        http://mail.python.org/mailman/listinfo/python-list
        dabo looks intresting but I am just looking for the simplist way and
        having to load from thier thing just complicates stuff. I could
        probily just use wx.grid but examples are scarce, I have seen some
        simple dbm stuff but this is an old book I am reading now

        Comment

        • dwelch91

          #5
          Re: is there an easy way to create a database on the fly and letthe user input values

          Eric_Dexter@msn .com wrote:
          I don't realy care what database I use wx.grid or whatever. I
          wan't it to look at a line
          >
          128 9023 23428 exc and create the database or pick something out of the
          file as some sort of a descrition line and then display and allow the
          user to change and add new lines. What is the easiest set of database
          routines to use for such a project???
          >

          >
          kirbybase?



          Comment

          • Peter Decker

            #6
            Re: is there an easy way to create a database on the fly and let theuser input values

            On 12 Oct 2006 15:50:16 -0700, Eric_Dexter@msn .com <Eric_Dexter@ms n.comwrote:
            dabo looks intresting but I am just looking for the simplist way and
            having to load from thier thing just complicates stuff. I could
            probily just use wx.grid but examples are scarce, I have seen some
            simple dbm stuff but this is an old book I am reading now
            You can't get much simpler than Dabo. The wx.Grid is a real PITA to
            work with, but the Dabo.dGrid wrapper makes things so much easier.
            --

            # p.d.

            Comment

            Working...