Patrick schrieb: > I am a beginner to intermediate Python Programmer. I can use SQLite with > it just fine but it is my understanding that relational database and > object oriented programming our not the perfect marriage. > > I was just wondering if anyone had an opinion on the most ideal language > to use with SQLite? > > I love Python but I LOVE SQLite, I would learn another language just to > use it better-Patrick
Depends really on what you wanna do with it. The best language to use with SQLite is of course SQL ;-). Otherwise it does not really matter. Your right that there is a mismatch between the set oriented operations of relational databases and the more item oriented OO world, thats why there are all those ORMs like SQLalchemy, Storm etc. which bridge the gap. But Tcl isn't a bad recommendation anyway. Might feel a bit foreign for your Python tuned mind, but it has a really, good SQLite interface. Bonus: you can help improve the SQLite testsuite easier if you understand Tcl. Michael _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

