v0.0.3#4
Merged
Merged
Conversation
Removes the logic that split multi-row INSERT statements into separate statements. This logic was intended to handle cases where semicolons might appear within quoted strings, but it incorrectly split valid multi-row inserts. The tests have been updated to reflect the expected behavior of preserving multi-row inserts as single statements, even when they contain semicolons within quoted values.
Introduces a new section to showcase an example of converting MariaDB/MySQL dump SQL to SQLite SQL. This section visually demonstrates the converter's capability by displaying side-by-side code snippets of the input and output SQL. The styling for this new section has also been added to ensure proper presentation.
Updates the README to provide a more comprehensive explanation of the SQL Converter's purpose, features, and limitations. - Enhances the "Why This Exists" section to better articulate the need for the tool. - Clarifies privacy aspects, emphasizing local execution and data security. - Updates browser requirements and usage instructions. - Provides a clearer example of input and output SQL. - Expands the "Supported Conversion Scope" and "Known Limits" sections for better user understanding. - Restructures local development, import, and reporting issue sections.
Detects if the browser supports the File System Access API, which is required for streaming large files directly to disk. If the browser is not supported, the UI is updated to reflect this limitation. The file drop area and convert button are disabled, and the status message is updated to inform the user. This prevents users from attempting conversions that are known to fail in their current browser, improving the user experience and preventing errors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
commit messages explains everything.