This is package where you can build databases importing (mysql and mariadb) in python as easy
Project description
let's go through each function and provide examples on how to use them.
-
CD (Create Database): This function creates a new database.
Example: CD("mydatabase", mydb)
-
CT (Create Table): This function creates a new table.
Example: CT("mytable (id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255))", mydb)
-
IV (Insert Values): This function inserts values into a table.
Example: IV("mytable", "name", ("John",),mydb)
-
IVM (Insert Multiple Values): This function inserts multiple rows of values into a table.
Example: IVM("mytable", "name", [("John",), ("Alice",), ("Bob",)],mydb)
-
SA (Select All): This function selects all rows from a table and prints them.
Example: SA("mytable", mydb)
-
DB (Drop Database): This function drops a database.
Example: DB("mydatabase", mydb)
-
DT (Drop Table): This function drops a table.
Example: DT("mytable", mydb)
-
STBC (Select Text By Column): This function selects a specific column from a table and prints its contents.
Example: STBC("name", "mytable", mydb)
-
STBW (Select Text By Where): This function selects all columns from a table based on a given condition and prints the results.
Example: STBW("mytable", "age > 18", mydb)
-
STBWL (Select Text By Where Like): This function selects all columns from a table based on a LIKE condition and prints the results.
Example: STBWL("mytable", "name", "J%", mydb)
-
UTBW (Update Text By Where): This function updates values in a table based on a given condition.
Example: UTBW("mytable", "name='Jane'", "id=1", mydb)
-
STBR (Select Text By Row): This function selects all columns from a table based on a given condition and prints the results row by row.
Example: STBR("mytable", mydb)
-
STBO (Select Text By Order): This function selects all columns from a table and orders the results by a specified field.
Example: STBO("mytable", "name", mydb)
-
STBOAD (Select Text By Order And Direction): This function selects all columns from a table, orders the results by a specified field, and specifies the order direction (ascending or descending).
Example: STBOAD("mytable", "age", "DESC", mydb)
-
MCDT (Modify Column Data Type): This function modifies the data type of a column in a table.
Example: MCDT("mytable", "age", "INT", mydb)
-
MCP (Modify Column Position): This function modifies the position of a column in a table.
Example: MCP("mytable", "name", "age", mydb)
-
ATBF (Add Table Field): This function adds a new column to a table.
Example: ATBF("mytable", "email", "VARCHAR(255)", mydb)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file PLCSQL-0.5-py3-none-any.whl.
File metadata
- Download URL: PLCSQL-0.5-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4df5090da9c202fa190c1893bb14d96a082bf552fc15d14c68baf344a85a492f
|
|
| MD5 |
5f516baed220e2e6a50c7938027bc64e
|
|
| BLAKE2b-256 |
6b75084235ee30412647371254430c10bbf159a2e0cd1cbca375a4636d84c4cc
|