{"version":"https://jsonfeed.org/version/1.1","title":"GPUBrainStorm - Think deeply.","home_page_url":"https://gpubrainstorm.com","feed_url":"https://gpubrainstorm.com/json/","description":"<p>Hi, I’m Mohamad, a Technical Lead at Esports Middle East in Dubai. I specialize in developing real-time streaming solutions, game development, and technical infrastructure for esports events. With a background in Information Systems Engineering (Intelligence Systems) and proficiency in multiple programming languages like C++, Python, and JavaScript, I am passionate about experimenting with new technologies and pushing the boundaries of what's possible. Always learning, never giving up, and committed to delivering high-performance solutions, I work across cloud platforms like AWS and Google Cloud to power scalable esports operations.</p><p><br></p><p>Our Projects Library:</p><p><a href=\"https://www.behance.net/esportsme\" rel=\"noopener noreferrer\" target=\"_blank\">https://www.behance.net/esportsme</a></p><p>My Accounts:</p><p><a href=\"https://github.com/GPUbrainStorm\" rel=\"noopener noreferrer\" target=\"_blank\">GitHub</a> - <a href=\"https://www.behance.net/2e394b0a\" rel=\"noopener noreferrer\" target=\"_blank\">Behance</a> - <a href=\"https://www.linkedin.com/in/mohamad-darwish-kakashi/\" rel=\"noopener noreferrer\" target=\"_blank\">LinkedIn</a> - <a href=\"https://www.facebook.com/00kakash17/\" rel=\"noopener noreferrer\" target=\"_blank\">Facebook</a> - <a href=\"https://x.com/DarwishMohamamd\" rel=\"noopener noreferrer\" target=\"_blank\">X</a></p>","icon":"https://media-cdn.gpubrainstorm.com/gpubrainstorm/production/images/channel-d2843c5a569b740966a11c7d87d5f426.png","favicon":"https://media-cdn.gpubrainstorm.com/gpubrainstorm/production/images/favicon-3cc7adaa4c053fccba76d8c5cdac1c5c.png","authors":[{"name":"Mohamad Darwish"}],"language":"en-us","items":[{"id":"34J5bH2lqRC","title":"A new open-source PostgreSQL integration for UE5","url":"https://www.gpubrainstorm.com/i/PostgureSQL-UE5-34J5bH2lqRC/","content_html":"<h1>PostgreSQL Integration Plugin for Unreal Engine 5</h1><p>A lightweight plugin that enables direct PostgreSQL database access inside Unreal Engine, supporting both C++ and Blueprints.</p><p>This is a BETA version, proceed with caution.</p><p>For support, join the Discord server:</p><p> <a href=\"https://discord.gg/BxHRHDdkNy\" rel=\"noopener noreferrer\" target=\"_blank\">https://discord.gg/BxHRHDdkNy</a></p><h2>FEATURES</h2><ul><li>Direct PostgreSQL Connectivity</li><li> Connect Unreal Engine directly to any PostgreSQL server (local or remote).</li><li>SSL Support</li><li> Optional SSL connection with selectable SSL modes and optional root certificate use.</li><li>OS Support</li><li> Currently supports Windows only.</li><li> (Tested on Windows 10 with UE5.2)</li><li>Query Execution</li><li> Run SQL commands, retrieve results, and map rows/columns easily.</li><li>Blueprint-Friendly</li><li> All major operations exposed as simple Blueprint nodes.</li><li>CSV + Structured Results</li><li> Query results can be returned both as CSV rows and structured maps.</li></ul><h2>AVAILABLE FUNCTIONS</h2><p>PG_Connect(...)</p><p> Opens a connection to a PostgreSQL database with optional SSL settings.</p><p>PG_Disconnect(Connection)</p><p> Closes an active PostgreSQL connection.</p><p>PG_IsConnected(Connection)</p><p> Returns whether the connection is valid and open.</p><p>PG_ExecuteNonQuery(Connection, Sql, OutError)</p><p> Executes SQL statements that do not return rows</p><p> (INSERT, UPDATE, DELETE, CREATE, DROP).</p><p>PG_ExecuteQuery(Connection, Sql, PrimaryKeyColumn, OutRowsByPK, OutRowsCSV, OutError)</p><p> Runs a SELECT query and returns data in two formats:</p><ul><li>A map of rows keyed by a primary column</li><li>An array of CSV-formatted rows</li></ul><h2>COMPATIBILITY</h2><p>Precompiled Binaries</p><ul><li>Unreal Engine 5.2</li></ul><p>Source Code</p><p> Should compile normally for other Unreal Engine versions.</p><p>Need precompiled binaries for another version?</p><p> Open an issue or ask on Discord.</p><h2>INSTALLATION</h2><p>Download from Releases:</p><p> <a href=\"https://github.com/GPUbrainStorm/PostgreSQLPlugin_UE5/releases\" rel=\"noopener noreferrer\" target=\"_blank\">https://github.com/GPUbrainStorm/PostgreSQLPlugin_UE5/releases</a></p><p>Precompiled (UE 5.2)</p><p> Place the plugin into your project's \"Plugins/\" folder and launch.</p><p>From Source Code (Any Version)</p><p> Copy the plugin to your \"Plugins/\" directory and build the project.</p><h2>USAGE EXAMPLE</h2><p>(Images as reference from GitHub)</p><p>image 1</p><p> <a href=\"https://github.com/user-attachments/assets/189f1bc8-3896-4b0c-a122-bc75f996a0d9\" rel=\"noopener noreferrer\" target=\"_blank\">https://github.com/user-attachments/assets/189f1bc8-3896-4b0c-a122-bc75f996a0d9</a></p><p>image 2</p><p> <a href=\"https://github.com/user-attachments/assets/5170e131-1944-446c-9b08-fbcdfd1c086c\" rel=\"noopener noreferrer\" target=\"_blank\">https://github.com/user-attachments/assets/5170e131-1944-446c-9b08-fbcdfd1c086c</a></p><p>image 3</p><p> <a href=\"https://github.com/user-attachments/assets/0c0e9957-d9d8-44a6-acf4-3abc5afc1cdc\" rel=\"noopener noreferrer\" target=\"_blank\">https://github.com/user-attachments/assets/0c0e9957-d9d8-44a6-acf4-3abc5afc1cdc</a></p>","content_text":"POSTGRESQL INTEGRATION PLUGIN FOR UNREAL ENGINE 5\n\nA lightweight plugin that enables direct PostgreSQL database access inside\nUnreal Engine, supporting both C++ and Blueprints.\n\nThis is a BETA version, proceed with caution.\n\nFor support, join the Discord server:\n\nhttps://discord.gg/BxHRHDdkNy\n\n\nFEATURES\n\n * Direct PostgreSQL Connectivity\n * Connect Unreal Engine directly to any PostgreSQL server (local or remote).\n * SSL Support\n * Optional SSL connection with selectable SSL modes and optional root\n   certificate use.\n * OS Support\n * Currently supports Windows only.\n * (Tested on Windows 10 with UE5.2)\n * Query Execution\n * Run SQL commands, retrieve results, and map rows/columns easily.\n * Blueprint-Friendly\n * All major operations exposed as simple Blueprint nodes.\n * CSV + Structured Results\n * Query results can be returned both as CSV rows and structured maps.\n\n\nAVAILABLE FUNCTIONS\n\nPG_Connect(...)\n\nOpens a connection to a PostgreSQL database with optional SSL settings.\n\nPG_Disconnect(Connection)\n\nCloses an active PostgreSQL connection.\n\nPG_IsConnected(Connection)\n\nReturns whether the connection is valid and open.\n\nPG_ExecuteNonQuery(Connection, Sql, OutError)\n\nExecutes SQL statements that do not return rows\n\n(INSERT, UPDATE, DELETE, CREATE, DROP).\n\nPG_ExecuteQuery(Connection, Sql, PrimaryKeyColumn, OutRowsByPK, OutRowsCSV,\nOutError)\n\nRuns a SELECT query and returns data in two formats:\n\n * A map of rows keyed by a primary column\n * An array of CSV-formatted rows\n\n\nCOMPATIBILITY\n\nPrecompiled Binaries\n\n * Unreal Engine 5.2\n\nSource Code\n\nShould compile normally for other Unreal Engine versions.\n\nNeed precompiled binaries for another version?\n\nOpen an issue or ask on Discord.\n\n\nINSTALLATION\n\nDownload from Releases:\n\nhttps://github.com/GPUbrainStorm/PostgreSQLPlugin_UE5/releases\n\nPrecompiled (UE 5.2)\n\nPlace the plugin into your project's \"Plugins/\" folder and launch.\n\nFrom Source Code (Any Version)\n\nCopy the plugin to your \"Plugins/\" directory and build the project.\n\n\nUSAGE EXAMPLE\n\n(Images as reference from GitHub)\n\nimage 1\n\nhttps://github.com/user-attachments/assets/189f1bc8-3896-4b0c-a122-bc75f996a0d9\n\nimage 2\n\nhttps://github.com/user-attachments/assets/5170e131-1944-446c-9b08-fbcdfd1c086c\n\nimage 3\n\nhttps://github.com/user-attachments/assets/0c0e9957-d9d8-44a6-acf4-3abc5afc1cdc","date_published":"2025-12-06T15:55:53.942Z","_microfeed":{"web_url":"https://gpubrainstorm.com/i/a-new-open-source-postgresql-integration-for-ue5-34J5bH2lqRC/","json_url":"https://gpubrainstorm.com/i/34J5bH2lqRC/json/","rss_url":"https://gpubrainstorm.com/i/34J5bH2lqRC/rss/","guid":"34J5bH2lqRC","status":"published","itunes:episodeType":"full","date_published_short":"Sat Dec 06 2025","date_published_ms":1765036553942}}],"_microfeed":{"microfeed_version":"0.1.2","base_url":"https://gpubrainstorm.com","categories":[{"name":"Science","categories":[{"name":"Mathematics"}]},{"name":"Technology"},{"name":"Science","categories":[{"name":"Physics"}]}],"subscribe_methods":[{"name":"RSS","type":"rss","url":"https://gpubrainstorm.com/rss/","image":"https://gpubrainstorm.com/assets/brands/subscribe/rss.png","enabled":true,"editable":false,"id":"WUDxdOhV693"},{"name":"JSON","type":"json","url":"https://gpubrainstorm.com/json/","image":"https://gpubrainstorm.com/assets/brands/subscribe/json.png","enabled":true,"editable":false,"id":"aSgJ-AJlaRM"}],"description_text":"Hi, I’m Mohamad, a Technical Lead at Esports Middle East in Dubai. I specialize\nin developing real-time streaming solutions, game development, and technical\ninfrastructure for esports events. With a background in Information Systems\nEngineering (Intelligence Systems) and proficiency in multiple programming\nlanguages like C++, Python, and JavaScript, I am passionate about experimenting\nwith new technologies and pushing the boundaries of what's possible. Always\nlearning, never giving up, and committed to delivering high-performance\nsolutions, I work across cloud platforms like AWS and Google Cloud to power\nscalable esports operations.\n\n\n\n\nOur Projects Library:\n\nhttps://www.behance.net/esportsme\n\nMy Accounts:\n\nGitHub - Behance - LinkedIn - Facebook - X","copyright":"©2024","itunes:type":"episodic","items_sort_order":"newest_first"}}