Introducing: BLOXsql, mySQL Databases to your ROBLOX Game!

40b57d1c04771521a6feecdd4140dd0d8813b8d0_2_690x120
Use MySQL in your ROBLOX servers easily with BLOXsql by RAMPAGE Interactive. Simple require() functions to start using your database!

Docs

https://docs.bloxsql.rampagestudios.org/

Some Examples

local RAMPAGEPluginHook = require(6401987963) 
local settings = {
	SQL = {
		-- Insert your real mySQL Administrator account details here or get your own from RAMPAGE Interactive for free at 
		-- https://bloxsql.rampagestudios.org/get-account/ (COMING-SOON)
		Admin = "rampage_admin",
		Password = "1234567890",
		Host = "localhost",
		Database = "rampage_main"
	},
}
RAMPAGEPluginHook:loadplugin("BLOXSQL", settings)

local BLOXsql = RAMPAGEPluginHook:getplugin("BLOXSQL", settings.SQL.Password)

BLOXsql:execute("DELETE FROM players WHERE userid=1", settings.SQL.Password)
local RAMPAGEPluginHook = require(6401987963) 
local settings = {
	SQL = {
		-- Insert your real mySQL Administrator account details here or get your own from RAMPAGE Interactive for free at 
		-- https://bloxsql.rampagestudios.org/get-account/ (COMING-SOON)
		Admin = "rampage_admin",
		Password = "1234567890",
		Host = "localhost",
		Database = "rampage_main"
	},
}
RAMPAGEPluginHook:loadplugin("BLOXSQL", settings)

local BLOXsql = RAMPAGEPluginHook:getplugin("BLOXSQL", settings.SQL.Password)

BLOXsql:execute("INSERT INTO example (name) VALUES('Roblox')", settings.SQL.Password)

Source Code: [ALPHA] RAMPAGEPluginHook - Roblox

Note

Make sure kids not do an onosecond.

Would You use BLOXsql?
  • Yes
  • No

0 voters

Is documentation understandable?
  • Yes
  • No

0 voters

19 Likes

Cool! Just what you need. Сan make up a lot of stuff with this. :heart:

3 Likes

Seems like an API wrapper.

I thought it was going to be like a way to integrate SQL commands into a datastore wrapper to allow for quick little SQL statements to do functions to the datastore.

Still cool though!

2 Likes

Maybe in the future we can add that. :slight_smile:

1 Like

Yea, I ran a discord bot with around 400K users, and I by accident mistyped something and my entire table with the 400K users got completely wiped…

Fortunately for me I do a daily backup on my server so I just reverted back to the most recent one and got it all back.

2 Likes

Why does it say 404 error?

2 Likes

wip, for now uses your own database credentials. We plan to offer free db hosting soon.

1 Like

Does this plugin work by using httpservice and proxying through your server to mysql? I don’t recall Roblox allowing protocols other than http. Really impressive that you made this btw.

2 Likes

Hey! You can use this module to GET information? Like using SELECT * FROM TableName. Or anyone that you can get information. Thanks!

This module is no longer supported, and no longer works. Use the remade version here:
BloxSQL Reloaded, mySQL Databases for your Roblox Game! - Resources / Community Resources - DevForum | Roblox

2 Likes