From the reference libraryRedM

Database

jo_libs/modules/database/index.md

Database

Database is a module to provide server-side utilities for interacting with the database

Include Database in your script

  1. To use the Database library, just add the initiator as a shared script inside of your fxmanifest.lua file.
shared_scripts {
  '@jo_libs/init.lua'
}

  1. Add the Database module inside the fxmanifest.lua (in lowercase)
jo_libs {
  'database',
}

You can now use the library inside of your resource with the jo.database global variable.

Functions

Documentation for the Server side

Back to documentation