0
I Use This!
Inactive

Commits : Listings

Analyzed about 14 hours ago. based on code collected about 18 hours ago.
May 01, 2023 — May 01, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge commit 'adamg-gh/adamg' More... about 16 years ago
Removed code that needed to check for a duplicate run as it was fixed in a previous commit. More... about 16 years ago
Changed the name of an internal variable. auto -> auto_field. More... about 16 years ago
Removed some code that is really no longer needed. More... about 16 years ago
Added another comment to clarify some code. More... about 16 years ago
Adjusted a comment to make the code make more sense. More... about 16 years ago
ManyToManyField now properly creates the intermediary table. To fix this correctly the follow other fixes have been implemented: More... about 16 years ago
Fixed m2m table creation to work with the sql command. More... about 16 years ago
Cleaned up the ManyToManyField and fixed the sql command to properly display SQL for an app with m2m fields. More... about 16 years ago
Fixed syncdb and sql commands. Weird fix that I am not entirely sure about yet. More... about 16 years ago
added in some simple unicode conversion on the create method and the parse_filter. We may end up with something more complex like get_db_prep_lookup, but for now this will do. Still getting unicode warnings but haven't tracked them down. Mike Bayer suggested just turning the warnings off, but I'd like to fix them if we can. More... about 16 years ago
Removed an unnecessary import. More... about 16 years ago
Cleaned up some imports. More... about 16 years ago
Subsequent test runs now work correctly. Changed the testing database to the in-memory SQLite database. More... about 16 years ago
Removed the path hacking. DATABASE_ENGINE must now be set to django_sqlalchemy.backend. This fixes odd errors where modules were executing twice. Tests now pass. More... about 16 years ago
Properly raise a NotImplementedError exception for kwarg lookups not implemented. More... about 16 years ago
Added Adam to the Authors file and removed an unnecessary comment. More... about 16 years ago
Failing due to SQLite locking issues for me right now. Remove the database/file on each runtests init. Remove the lower-s session for now. The problem seems to be a nested transaction being issues, which makes an insert fail, and then all subsequent statements fail. More... about 16 years ago
Merge commit 'mtrier/master' into adamg More... about 16 years ago
Removed unnecessary import More... about 16 years ago
Remove a useless comment line. More... about 16 years ago
Add some comments, double-call-proof ModelBase.__init__ and .__new__ some namespace/sa stuff, More... about 16 years ago
Use a on-disk DB, add Meta classes, fix runtests with an absolute path. More... about 16 years ago
Special-case SQLite to wrap with Django's SQLiteCursorWrapper so query transformation is done. More... about 16 years ago
Make Model.save() be more like Django's obj.save(). More... about 16 years ago
Save needs to happen before M2M so we have a PK. More... about 16 years ago
Add the regression test apps to the INSTALLED_APPS, add some more meat to the make model test. Which is horribly named. More... about 16 years ago
Remove autoflush from the global session. Add nonfunctioning ManyToMany Field, turn echo off in the test settings file (because that is *boring* to test, and will change per-database-engine.) Fix a typo (failues->failures) fix __file__, which I forgot isn't necessarily set to full path when run as script. Switch session.flush->session.commit in save/update/delete methods. More... about 16 years ago
Added in save, delete, update methods on the object but they are still not working. Need to look into it. Cleaned up some unnecessary imports. More... about 16 years ago
Merge branch 'master' of [email protected]:mtrier/django-sqlalchemy More... about 16 years ago