[question] Moving from SQLite to other database engine #747
-
Simple thing: I initially used SQLite as my database backend because it's easy and really lightweight, but I'm considering to move off of it to, say, MySQL or PostgreSQL. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @hatkidchan, yes, copying the database tables one by one should work. Also check out |
Beta Was this translation helpful? Give feedback.
-
Ah, I'm not digging into Go yet, but that script didn't even compile for me:
|
Beta Was this translation helpful? Give feedback.
Hi @hatkidchan, yes, copying the database tables one by one should work. Also check out
sqlite2mysql.go
, which I created as a standalone tool for exactly that purpose. However, I haven't used it in a while, so might not be up to date anymore. Give it a try and report back.