Skip to content

Instantly share code, notes, and snippets.

@rcerrejon
Created June 15, 2016 13:51
Show Gist options
  • Save rcerrejon/a4b80a61b37aa90aeb848a45b36100ee to your computer and use it in GitHub Desktop.
Save rcerrejon/a4b80a61b37aa90aeb848a45b36100ee to your computer and use it in GitHub Desktop.
Query Standard Way in Extbase
/** Connect to the Database by TYPO3_DB */
/** @var DatabaseConnection $db */
$db = $GLOBALS['TYPO3_DB'];
//Execute Query
$result = $db->exec_SELECTgetRows('SELECT * FROM tx_test_tabelle');
//Get Results
return $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment