Created
July 1, 2017 09:34
-
-
Save Kamilnaja/7846e1b0ccd557a1a9b991a6b196e9fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.get('/api/texts', function (req, res) { | |
connection.query('ALTER TABLE texts MODIFY COLUMN * TEXT CHARACTER SET utf8', function (error, results, fields) { | |
connection.query('SELECT * FROM texts', function (error, results, fields) { | |
if (error) throw error; | |
return res.send({error: false, data: results, message: 'Texts list'}) | |
}) | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment