-
-
Notifications
You must be signed in to change notification settings - Fork 599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export Settings #5106
Comments
So import settings too ? |
@marcpley Do you ask whether Custom SQL Functions are stored in settings or in the DB? The answer is - they are stored in settings and it cannot be the other way around. SQLite does not support stored functions. There has to be application, which registers additional functions in the open, ongoing connection to the database. It's completely up to the application that uses SQLite database how these functions are executed. SQLiteStudio is executing them. They cannot be simply "transfered" to the target database and moved with database file, because execution engine of custom functions is in the application, not in the SQLite library. |
Ok, thanks for the clarification :-) |
Yes, I believe this is what this issue is about - to be able to export some settings (like functions) and then import them elsewhere. |
Details
Here you describe your problem details, or proposal for enhancement.
Ability to export settings
The text was updated successfully, but these errors were encountered: