/* --------------------------------------------------------------------- Copyright (c) Project Skyline, Partnership of Ben Sgro & Devin Bousquet, with operations in NH & NY, 2005-2006. All Rights Reserved. Published rights reserved under the copyright laws of the United States. This software and any other software contained on this media is proprietary to and embodies the confidential technology of Project Skyline, Partnership. Possession, use, duplication or dissemination of the software and media is authorized only pursuant to a valid written license from Project Skyline, Partnership. Written by: Ben Sgro, ProjectSkyline[dot]com, 2006. RELEASED. --------------------------------------------------------------------- */ /* DBAS_MySQLQuery Executes the query provided in $query for the database handle $db. */ function DBAS_MySQLQuery($query, $db) { $result = mysql_query($query, $db); if ( !$result ) { $errorStr = mysql_error( $db ); $errorNum = mysql_errno( $db ); $errorStr = "error($errorStr):error no($errorNum)"; error_log("DBAS: MySQL $errorStr"); } return $result; }