Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oshliaer/alasqlgs
AlaSQLGS is a library that enables the use of the AlaSQL.js library in Google Apps Script
https://github.com/oshliaer/alasqlgs
alasql google-apps-script library
Last synced: 2 months ago
JSON representation
AlaSQLGS is a library that enables the use of the AlaSQL.js library in Google Apps Script
- Host: GitHub
- URL: https://github.com/oshliaer/alasqlgs
- Owner: oshliaer
- License: mit
- Created: 2017-04-29T19:27:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T02:26:32.000Z (almost 2 years ago)
- Last Synced: 2024-07-05T07:35:08.134Z (7 months ago)
- Topics: alasql, google-apps-script, library
- Language: JavaScript
- Homepage:
- Size: 2.12 MB
- Stars: 40
- Watchers: 1
- Forks: 7
- Open Issues: 11
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# AlaSQLGS
AlaSQLGS is a library that enables the use of the [AlaSQL.js](http://alasql.org) library in [Google Apps Script](https://developers.google.com/apps-script/).
API docs are available [here](https://script.google.com/macros/library/versions/d/1XWR3NzQW6fINaIaROhzsxXqRREfKXAdbKoATNbpygoune43oCmez1N8U).## Adding the library to your project
AlaSQL for Google Apps Script is made available as a script library. This is how you add it to your project:
1. Click "Add a library" in the Libraries section of the left pane in the Apps Script IDE.
2. Enter the project key (`1XWR3NzQW6fINaIaROhzsxXqRREfKXAdbKoATNbpygoune43oCmez1N8U`) in the "Script ID" field, and click "Look up".
3. Select the highest version number, and choose `AlaSQL` as the identifier. (Do not turn on Development Mode unless you know what you are doing. The development version may not work)
4. Press "Add". You can now use the AlaSQL library in your code.## Loading the library
To load AlaSQLGS:
```js
const alasql = AlaSQLGS.load();
```The library supports lazzy loading.
## Copying the library
A Google Apps Script project for AlaSQL is available [here](https://script.google.com/d/1XWR3NzQW6fINaIaROhzsxXqRREfKXAdbKoATNbpygoune43oCmez1N8U/edit?usp=sharing).
1. Select Overview left pane in the Apps Script IDE.
1. In the upper right corner find the copy icon.## Samples
[Data and code](https://drive.google.com/drive/folders/1iG34CHDVBIwqG8yOcjJYHl3gx1IsTzOJ?usp=sharing)
## Links
- [agershun/alasql](https://github.com/agershun/alasql)
## License
AlaSQLGS for Google Apps Script is released under the MIT license.