| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| README.md | 2021-12-07 | 784 Bytes | |
| main.py | 2021-12-07 | 11.0 kB | |
| Totals: 2 Items | 11.8 kB | 0 |
Usage:
- Import the given package in an empty Python file.
- Run the file where you imported the package as a program (double click on the file).
- Enter data from the database.
- In the Request field, enter the SQL command.
- Click on the Done button.
Examples of SQL commands:
- Creating a table -
CREATE TABLE 'users'(id int AUTO_INCREMENT, name varchar(32), password varchar(32), PRIMARY KEY (id)); - Adding data to a table -
INSERT INTO 'users' (name, password) VALUES ('Jack', '12345'); - Changing data in a table -
UPDATE 'users' SET password = '6789and10' WHERE id = 1; - Removing data from a table -
DELETE FROM 'users' WHERE id = 1; - Dropping a table -
DROP TABLE 'users';