PyJeeves syncronization application
* A generic stored procedure helper added, and support for calling them. * Order and OrderItem tables added, including helpers and calls to SP for creation and updates. * Minor updates to other repositories. |
||
|---|---|---|
| docs | ||
| migrations | ||
| pyjeeves | ||
| sample | ||
| tests | ||
| .dockerignore | ||
| .gitignore | ||
| alembic.ini | ||
| docker-compose.yml | ||
| Dockerfile | ||
| LICENSE | ||
| Makefile | ||
| README.rst | ||
| requirements.txt | ||
| setup.py | ||
PyJeeves Module =============== This project is a Jeeves data extraction and integration project. ## Initial creation of database schema. ´docker run --link db --network marcus_default -v /srv/pyjeeves/config.yml:/app/config.yml gitlab.lndvll.se:5500/lindvallskaffe/pyjeeves python ./pyjeeves/db_raw.py´ ## Connecting to DB with client ´docker run -it --network marcus_default --link db:mysql --rm mysql sh -c 'exec mysql -h"db" -P"3306" -uroot -p"ROOT_PW"'´ ## Forcing updates You may force updates of objects by setting RowUpdatedDt to null. For example: ´update jvs_customers set RowUpdatedDt = null;´