My favorites | Sign in
Logo
                
Search
for
Updated Jul 02, 2009 by andrewjcarter
what_is_new  
1. What's new to the pod project.

July 2, 2009: Version 0.54.2

try:
    import sqlite3
except:
    from pysqlite import dbapi2 as sqlite3

June 22, 2009: Version 0.54

import pod
import pod.list

a_list = pod.list.List()

June 17, 2009: Version 0.50

db = pod.Db(file = 'afile.sqlite', index = True)  # Now all dynamic attributes will be indexed for fast query. 

# You can also control this on a class by class basis which overrides the global setting: 

class Person(pod.Object):
    POD_DYNAMIC_INDEX = True

class Place(pod.Object):
    POD_DYNAMIC_INDEX = False
class Person(pod.Object):
    weight = typed.pod.Float(index = False)

for peep in Person.where.age > 32:
   peep.name

for peep in Person.where.weight > 233.2:
   peep.name

for peep in Person.weight > 233.2:
   peep.name

June 9, 2009: Version 0.40

We got some feedback from some people which lead to major changes.

June 3, 2009: Version 0.31

May 20, 2009: Version 0.21

May 19, 2009: Version 0.2

Couple of new things:

  • Experimental: Got the new pod.column.Time columns with extra datetime goodies working.
  • Experimental: Added RawQuery objects.

May 5, 2009: Initial Release

Finally, we got the first alpha release onto code.google.com.


Sign in to add a comment
Powered by Google Project Hosting