qt - Confused between QSQLITE and SQLITE -
i'm creating music library manager on qt. i'm confused whether should use qt's driver sqlite(qsqlite) or raw sqlite grabbed website. i'll need create .dll raw code though. if use qt's native library, believe i'll have install drivers inorder use app on different system.
i'm newbie both qt , sqlite. kind of help/advise awesome :)
thanks!
i highly recommend use qsqlite
driver.
- it part of qt sql module provides support sql databases in "qtish" way. you'll save lot of time , effort.
- there's no need additional installation. have include driver (sqldrivers/qsqlite.dll) in deploy folder. after all, if don't pay comercial license, when deploy qt application you'll have carry several dynamic libraries. don't think 1 more make difference.
Comments
Post a Comment