Welcome to The Forum

Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies and more


Search the Community

Showing results for tags 'SQL'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Survival Servers
    • The Lounge
  • Game Servers
    • ARMA 2: Operation Arrowhead
    • ARMA 3
    • Unturned
    • Rust
    • Reign of Kings
    • ARK: Survival Evolved (PC)
    • Hurtworld
    • 7 Days to Die
    • Conan Exiles
    • Minecraft
    • Dark and Light
    • Citadel: Forged With Fire
    • ARK: Survival Evolved (PS4)
    • The Forest
    • Eco
    • PixARK
    • Space Engineers
    • Rend
    • SCUM
    • DayZ
    • Atlas
    • Miscreated
    • Outlaws of the Old West
    • Mordhau
    • Rune 2 (Ragnarok)
    • Day of Dragons
    • Dead Matter
    • Valheim
    • Satisfactory
    • Path of Titans
    • Project Zomboid
    • Veloren
    • V Rising
    • ARMA Reforger
    • Core Keeper
    • Terraria
    • Subnautica
    • Vein
    • Barotrauma
    • Mount and Blade ll: Bannerlord
    • Icarus
    • Frozen Flame
    • Craftopia
    • Sons of The Forest
    • No One Survived
    • Night of The Dead
    • Don't Starve Together
    • Portal Knights
    • Counter-Strike: Global Offensive
    • Left 4 Dead 2
    • Counter-Strike 2
    • The Front
    • Astroneer
    • Subsistence
    • Empyrion: Galactic Survival
    • Beasts Of Bermuda
    • Avorion
    • Smalland
    • Enshrouded
    • Palworld
    • Sunkenland

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Location


Interests

Found 2 results

  1. Hello there, I have some questions, first of all, is it possible to acces to the sql database of the server ? If yes, what are the connection credentials (port - pass) ? Then, I want to add the "conan-exiles-admin-map" which is an add-on for the server that will help to check construction and stuff on the map (you should check the github https://github.com/germanrcuriel/conan-exiles-admin-map) but for this, I need to open a new port and launch an executable on the server, is it possible (with a SQL command of course) ? If those two are possible it will be really great for the community I am building with some friends. Thanks !
  2. I am having trouble creating a table in SQL with phpmyadmin on my server. I installed the singlecurrency 4.0 for Dayz Overpoch and I get a error message when I enter the Sql table "banking_data". Coins will save on the player but wont save in the bank after relog or restart. I included a pic of the error message. Here is the code I am trying to enter. ANY help would be much appreciated! SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `banking_data` -- ---------------------------- DROP TABLE IF EXISTS `banking_data`; CREATE TABLE `banking_data` ( `PlayerUID` varchar(20) NOT NULL DEFAULT '0', `PlayerName` varchar(128) NOT NULL DEFAULT 'Null', `BankSaldo` bigint(24) NOT NULL DEFAULT '0', `LastUpdated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`PlayerUID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `character_data` -- ---------------------------- ALTER TABLE character_data ADD CashMoney int(11) NOT NULL DEFAULT 0 AFTER Infected;