Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. let query = `INSERT INTO ${table} (timestamp, lattitude, longitude, type) VALUES `;
  2. locationData.forEach(location => {
  3. query += `('${location.timestamp}', '${location.lattitude}', '${location.longitude}', '${type}'), `;
  4. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement