Hello, Is it possible to pack name of the column and value before submitting to the database. I mean something to save( dictionary), where dictionaries key is the name of column and dictionaries item is value to be saved) or save(list_column_names, list_values)?
b = Blog( [name, tagline] , ['Beatles Blog', 'All the latest Beatles news] ) >>> b.save() I do not want to call save(column_name, item_value) for every item separately, i.e.: b = Blog(name='Beatles Blog', tagline='All the latest Beatles news.') >>> b.save() My database consist of 20 columns. Now i am using Sqlite3 syntax, where i print all column and item names to one string. regards, gintare -- 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=en.