Skip to content

Commit

Permalink
debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
elgaard committed Mar 2, 2016
1 parent d102b03 commit 041500d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL.MYSQL.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ mysql -u roprotokol -p roprotokol<<EOSQL
DROP DATABASE IF EXISTS roprotokol;
CREATE SCHEMA roprotokol DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
-- CREATE USER 'roprotokol'@'localhost' IDENTIFIED BY 'roprotokol';
-- GRANT ALL PRIVILEGES ON 'roprotokol'.* TO 'roprotokol'@'localhost';
-- GRANT ALL PRIVILEGES ON roprotokol.* TO 'roprotokol'@'localhost';
-- FLUSH PRIVILEGES;
EOSQL
2 changes: 1 addition & 1 deletion rowingapp/backend/boats.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
GROUP BY id
";
//echo $s;
$result=$rodb->query($s) or die("Error in stat query: " . mysqli_error($rodb));;
$result=$rodb->query($s) or die("Error in boats query: " . mysqli_error($rodb));;
echo '[';
$first=1;
while ($row = $result->fetch_assoc()) {
Expand Down

0 comments on commit 041500d

Please sign in to comment.