AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   HLstatsX:CE (https://forums.alliedmods.net/forumdisplay.php?f=156)
-   -   mariadb with msql support ( mysqli ) (https://forums.alliedmods.net/showthread.php?t=303876)

csgoandsm 12-25-2017 22:02

mariadb with msql support ( mysqli )
 
Code:

{
                $this->db_addr = $db_addr;
                $this->db_user = $db_user;
                $this->db_pass = $db_pass;
               
                $this->querycount = 0;
               
                if ( $use_pconnect )
                {
                        $this->link = @mysqli_connect("p:".$db_addr, $db_user, $db_pass);
                }
                else
                {
                        $this->link = @mysqli_connect($db_addr, $db_user, $db_pass);
                }
               
                if ( $this->link )
                {
                        $q = @mysqli_query($this->link, "SET NAMES 'utf8'");
                        @mysqli_free_result($q);
                        if ( $db_name != '' )
                        {
                                $this->db_name = $db_name;
                                if ( !@mysqli_select_db($this->link, $db_name) )
                                {
                                        @mysqli_close($this->db_connect_id);
                                        $this->error("Could not select database '$db_name'. Check that the value of DB_NAME in config.php is set correctly.");
                                }
                        }
                        return $this->link;
                }
                else
                {
                        $this->error('Could not connect to database server. Check that the values of DB_ADDR, DB_USER and DB_PASS in config.php are set correctly.');
                }
        }

https://pastebin.com/qfuyZMQP

https://pastebin.com/uu2ka0xa

https://pastebin.com/2G3hQLpv

https://bitbucket.org/Maverick_of_UC...ith-php-7/diff


All times are GMT -4. The time now is 21:47.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.