Jump to content

Script Help


AJXB

Recommended Posts

local connection = nil 
  
function connect( ) 
    connection = dbConnect( "mysql", "dbname=aboudmdb;host=***HOST IP***;port=3306;unix_socket=/var/run/mysqld/mysqld.sock", "USERNAME", "PASSWORD", "share=1" ) 
    if connection then 
        outputConsole ( "Server is now connected with the MySQL database!", 1 ) 
        return true 
    else 
        outputConsole ( "Connection with the MySQL database failed!", 1 ) 
        return false 
    end 
end 
addEventHandler ( "onResourceStart", getResourceRootElement(getThisResource()), connect ) 

try this

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...