Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created July 1, 2017 09:34
Show Gist options
  • Save Kamilnaja/7846e1b0ccd557a1a9b991a6b196e9fd to your computer and use it in GitHub Desktop.
Save Kamilnaja/7846e1b0ccd557a1a9b991a6b196e9fd to your computer and use it in GitHub Desktop.
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