Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
JSMySQLFix
PluginMIT

JSMySQLFix

JSMySQLFix is an innovative plugin designed for the Velocity proxy environment that ensures seamless MySQL database connectivity by automatically downloading and embedding the MySQL JDBC drivers.

412
Downloads
4
Followers
12 months ago
Updated
📦
2
Versions
libraryutilityvelocity
Download Latestv1.0.1View on Modrinth

📖About JSMySQLFix

JSMySQLFix

Join my Discord

Description:
JSMySQLFix is an innovative plugin designed for the Velocity proxy environment that ensures seamless MySQL database connectivity by automatically downloading and embedding the MySQL JDBC drivers. This plugin aims to simplify dependencies for server administrators and address potential issues caused by missing or incorrect drivers.

Features:

  • Automatic Download: The plugin checks if the required MySQL JDBC driver is present. If not, it automatically downloads the driver from a secure source and saves it in the data directory.
  • SHA-256 Verification: After the download, a SHA-256 verification is performed to ensure the integrity of the downloaded file, ensuring that the driver is unchanged and secure.
  • Easy Embedding: Upon successful download, the MySQL driver is directly embedded into the application's classpath, allowing immediate use of MySQL functions.
  • Logging: To facilitate maintenance, the plugin offers comprehensive logging capabilities that detail both successful downloads and any potential errors.

Accessing MySQL:
Once the JSMySQLFix plugin is installed and the MySQL driver is successfully embedded, other plugins can access MySQL instantly. Developers can utilize standard JDBC connections to interact with their MySQL databases using the following connection string format:

    String ip = "yourIP";
    String port = "3306";
    String databaseName = "yourDatabase";
    String url = "jdbc:mysql://" + ip + ":" + port + "/" + databaseName + "?useSSL=false&allowPublicKeyRetrieval=true";
    String username = "yourUsername";
    String password = "yourPassword";

    try {
        Class.forName("com.mysql.cj.jdbc.Driver");
        logger.info("Attempting to connect to database.);

        connection = DriverManager.getConnection(url, username, password);
        logger.info("Connected to the database.");
    } catch (ClassNotFoundException e) {
        logger.error("MySQL Driver not found: " + e.getMessage());
    } catch (SQLException e) {
        logger.error("Error while connecting to the database: " + e.getMessage());
    }

Ensure to replace <yourIP>, <port>, <yourDatabase>, <yourUsername>, and <yourPassword> with your actual MySQL server details.

Installation:

  1. Download the plugin and place it in the /plugins directory of your Velocity proxy.
  2. Restart the proxy. The plugin will automatically download and embed the necessary MySQL drivers.
  3. Check the logs to confirm that everything has been installed correctly.

👥 Team & Contributors

No authors recorded.

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
velocity
Minecraft Versions
1.161.16.11.16.21.16.31.16.41.16.51.171.17.1+27 more

🔗 Links

Modrinth Page