I'd like to send several queries to the Google Cloud SQL database from Google Apps Script in one row. For example :
insert into table_name (field_name) values ("prout");
select last_insert_id()
but for some reason I can't get it to work. Is the API limited to one query per time ? It is a pain because sending a query takes time. It would be a lot more efficient to be able to send several things at once.
