Created
October 7, 2018 21:05
-
-
Save sagar290/814acfb7a2ee642e5b90f46f9cd90d26 to your computer and use it in GitHub Desktop.
You can pull data from MySQL database to Google doc spreadsheet auto with just click of a button or scheduled time. This is great use for retrieving data in spreadsheet format.
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
// MySQL to Google Spreadsheet By Pradeep Bheron | |
// Support and contact at pradeepbheron.com | |
function myMySQLFetchData() { | |
var conn = Jdbc.getConnection('jdbc:mysql://127.0.0.1:3306/employee_db', 'username', 'pass'); // Change it as per your database credentials | |
var stmt = conn.createStatement(); | |
var start = new Date(); // Get script starting time | |
var rs = stmt.executeQuery('SELECT id,emp_name, emp_code FROM employee_details GROUP BY 1 LIMIT 1000'); // It sets the limit of the maximum nuber of rows in a ResultSet object | |
//change table name as per your database structure | |
var doc = SpreadsheetApp.getActiveSpreadsheet(); // Returns the currently active spreadsheet | |
var cell = doc.getRange('a1'); | |
var row = 0; | |
var getCount = rs.getMetaData().getColumnCount(); // Mysql table column name count. | |
for (var i = 0; i < getCount; i++){ | |
cell.offset(row, i).setValue(rs.getMetaData().getColumnName(i+1)); // Mysql table column name will be fetch and added in spreadsheet. | |
} | |
var row = 1; | |
while (rs.next()) { | |
for (var col = 0; col < rs.getMetaData().getColumnCount(); col++) { | |
cell.offset(row, col).setValue(rs.getString(col + 1)); // Mysql table column data will be fetch and added in spreadsheet. | |
} | |
row++; | |
} | |
rs.close(); | |
stmt.close(); | |
conn.close(); | |
var end = new Date(); // Get script ending time | |
Logger.log('Time elapsed: ' + (end.getTime() - start.getTime())); // To generate script log. To view log click on View -> Logs. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment