About 9,420,000 results
Open links in new tab
  1. How to connect to SQL Server database from JavaScript in the …

    Can anybody give me some sample source code showing how to connect to a SQL Server 2005 database from JavaScript locally? I am learning web programming on my desktop. Or do I …

  2. Is it possible to access an SQLite database from JavaScript?

    I have a set of HTML files and a SQLite database, which I would like to access from the browser, using the file:// scheme. Is it possible to access the database and create queries (and tables) …

  3. Can I run a SQL query in frontend Javascript? - Stack Overflow

    I want to run a SQL query in a .JS file. I tried to add some PHP codes to it but it didn't work of course. I want to run the SQL query: SELECT price FROM list WHERE q=1. I want to show …

  4. How to write a parameterized SQL query in javascript?

    Apr 15, 2018 · 0 The easiest would be to just stick to the extensive documentation - and learning basic javascript. The statement let sql =`select * from q_users where firstname=?,${[name]}`; …

  5. JavaScript sqlite - Stack Overflow

    Sep 15, 2008 · 28 There a project called sql.js which is a port of SQLite in JavaScript. sql.js is a port of SQLite to JavaScript, by compiling the SQLite C code with Emscripten.

  6. getting data from query sql database to javascript

    Apr 23, 2014 · Learn how to retrieve data from SQL database and use it in JavaScript with practical examples and solutions for seamless integration.

  7. javascript - Preventing SQL injection in Node.js - Stack Overflow

    Is it possible to prevent SQL injections in Node.js (preferably with a module) in the same way that PHP had Prepared Statements that protected against them. If so, how? If not, what are some …

  8. sqlite - SQL.js in javascript - Stack Overflow

    Mar 14, 2013 · I want to store data in a SQLite database directly from a javascript script. I found this SQL.js library that is a port for javascript. However, apparently it's only available for …

  9. Convert JS date time to MySQL datetime - Stack Overflow

    Jun 23, 2016 · JavaScript timestamps are based on your device's clock and include the time zone. Before sending any timestamps generated from JavaScript, you should convert them to UTC …

  10. Can JavaScript connect with MySQL? - Stack Overflow

    Jun 11, 2010 · 28 No, JavaScript can not directly connect to MySQL. But you can mix JS with PHP to do so. JavaScript is a client-side language and your MySQL database is going to be …