Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cpt-erwin/sequeltalk
Simple PHP tool to help you quickly generate data for Smalltalk from an existing MySQL DB.
https://github.com/cpt-erwin/sequeltalk
daskalos mysql pdo php php74 smalltalk sql
Last synced: 5 days ago
JSON representation
Simple PHP tool to help you quickly generate data for Smalltalk from an existing MySQL DB.
- Host: GitHub
- URL: https://github.com/cpt-erwin/sequeltalk
- Owner: cpt-erwin
- Created: 2021-04-17T21:41:39.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-20T20:51:58.000Z (over 3 years ago)
- Last Synced: 2023-03-21T02:21:22.673Z (over 1 year ago)
- Topics: daskalos, mysql, pdo, php, php74, smalltalk, sql
- Language: PHP
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sequeltalk
Simple PHP tool to help you quickly generate data for Smalltalk from an existing MySQL DB.## Usage
To install all dependency packages used by this app run:
```
composer install
```After you define all your tables and their columns in `public\index.php` run:
```
composer start
```It will run an app instance on the following URL: http://localhost:8080/.
If no errors are encountered, the app will echo the resulting Smalltalk script.
## Supported Smalltalk data types
* String
* Number
* Date
* Object## Example usage
Check the [wiki](https://github.com/tumi-soft/sequeltalk/wiki/Example-usage) for the fully
documented example usage of this tool with detailed explanation.