-
Notifications
You must be signed in to change notification settings - Fork 11
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
Sqlite #140
Open
KillerOfPie
wants to merge
31
commits into
2.6.0
Choose a base branch
from
sqlite
base: 2.6.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Sqlite #140
Conversation
This file contains 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
and refactor some methods from JsonLinkageConfiguration into interface LinkageConfiguration (as default methods)
- Updated plugin versions in POM.xml - Fix for non DATA_ERROR debug output
- Moved inventoryGUI to a local directory instead of it's own to prevent potential conflicts - Fix for add Error during shop creation when adding users.
- RemoveSide commands now default to the only item if no index was specified and the shop only has one item on the side - Fix for members showing up as managers in the edit menu - Fix for managers not showing in edit menu
- Change ShopItemStack.itemstack to serialize using ItemStack#serialize rather than base64, This increases readability and decreases file size
KillerOfPie
commented
Jul 5, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good - pre testing
The latter is because SQLite's ResultSets only support FORWARD_ONLY_CURSORs, such that moving up and down the rows is not possible. Checking the size of the ResultSet is now done more subtly, but also in a more crude way.
- Add SQLITE option to data-storage-type pre-comment - POM Version updates - POM Improvements - Added `Clean` and `skipDocs` profiles for maven builds - Moved `original` and JavaDocs output to `target/output-Files` sub folders - Updated JavaDoc exclusions - Excluded `META-INF/maven` files from builds
When it comes time to merge, keep |
…robustiveness of the Database transactions. This will reduce the risk of data loss at the cost of having shop operations fail early.
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.
Pull Request Etiquette
There are several guidelines you should follow in order for your Pull Request to be merged.
Replace
[ ]
with[x]
to cross the checkbox.Changes
This PR adds a new kind of storage type which relies on a single SQLite database file, created, read and updated on disk.