I found these two previous queries: http://groups.google.com/group/django-users/browse_thread/thread/e692a073b88c15f2?fwc=1
Does anyone know what is "rest" subcommand? http://groups.google.com/group/django-users/browse_frm/thread/da4601114a82635b/359e6d294f5faed7?lnk=gst&q=sqlcustom#359e6d294f5faed7 On Nov 13, 9:51 am, Zeynel <[email protected]> wrote: > I am trying to add some records to my SQLite3 database with sqlcustom > as explained > herehttp://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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=.

