I am trying to add some records to my SQLite3 database with sqlcustom
as explained here 
http://docs.djangoproject.com/en/dev/ref/django-admin/#ref-django-admin

I don't get any errors when I run


C:\sw1>manage.py sqlcustom wkw1

BEGIN;
INSERT INTO mkw1_lawyer (first, initial, last, year_graduated, school)
VALUES ('Christian', '', 'Abel', '2006', 'University of Hamburg');
INSERT INTO mkw1_lawyer (first, initial, last, year_graduated, school)
VALUES ('Daniel', 'M.', 'Abuhoff', '1978', 'Columbia Law School');
COMMIT;

C:\sw1>manage.py syncdb

But the values are not actually added to the database. Does anyone
know what I am doing wrong?

Thanks!

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=.


Reply via email to