mogy-mysql
v0.1.4
Published
MySQL query activity for Mogy
Readme
mogy-mysql
MySQL query activity for mogy.
Installation
In your mogy project, install the dependency using npm :
$ npm install mogy-mysql --saveTo register the mysql activity to Amazon Simple Workflow :
$ mogy registerConfig
In your mogy environment config file, under the activities key, add :
"mysql": {
"host" : "localhost",
"user" : "user",
"password" : "****",
"database" : "project",
"port": 8888
}Sample Decider Usage
activity({
name: 'myQuery',
activity: 'mysql',
input: {
query: 'show tables'
}
})