simplidb


Namesimplidb JSON
Version 0.2.2a0 PyPI version JSON
download
home_pagehttps://github.com/maulydev/SimpliDB
SummaryA simple SQLite database wrapper (A package that provides a simplified interface for working with SQLite databases.)
upload_time2023-09-13 15:21:35
maintainer
docs_urlNone
authorMauly dotDev
requires_python>=3.0
licenseMIT
keywords sqlite database wrapper simple db
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SimpliDB

The `SimpliDB` class provides a simplified interface for interacting with a SQLite database. It offers methods to perform various operations related to tables, columns, and rows.

### DB Methods

- `connect`: Connect to an existing database or create new database if it does not exist

### Table Methods

- `create_table`: Creates a new table in the database with specified columns.
- `drop_table`: Deletes a table from the database if it exists.
- `truncate_table`: Removes all the data from a table while keeping the table structure intact.
- `rename_table`: Renames a table.
- `fetch_table_column` : Retrieve table columns
- `table_query`: Retrieves the query for the table
- `table_info`: Returns the table information
- `__tables__`: Returns all tables in the database

### Column Methods

- `add_column`: Adds one or more columns to an existing table.
- `drop_column`: Drops one or more columns from an existing table.
- `rename_column`: Renames a column in an existing table.

### Row Methods

- `insert_multiple`: Inserts multiple rows of data into a table.
- `insert_row`: Inserts a single row of data into a table.
- `fetch_all`: Retrieves all rows from a table.
- `delete_row`: Deletes rows from a table based on a condition.
- `count_row`: Counts the number of rows in a table.

### Other Methods

- `execute_sql`: Executes a custom SQL query on the database.
- `close`: Closes the database connection.
- `__extend__`: Allows you to use the sqlite3 methods on the simplidb object

The `SimpliDB` class simplifies common database operations, such as creating and manipulating tables, managing columns, inserting and retrieving rows, and executing custom SQL queries. It abstracts away the complexities of working directly with SQLite, providing a user-friendly interface for database interactions.

Feel free to explore and use the methods provided by `SimpliDB` to streamline your SQLite database operations.

# Getting Started

## Dependencies

To use the provided code, ensure that the following dependencies and prerequisites are met:

### Python

- Python: Make sure you have Python installed on your system. The code provided should work with Python 3.x versions.

No additional libraries or external dependencies are required for the code. The code utilizes the built-in `sqlite3` module, which is part of the Python Standard Library.

### Operating System

The code should work on any operating system that supports Python and the `sqlite3` module. This includes Windows, macOS, and Linux distributions.

Ensure that you have a compatible version of Python installed on your system.

## Installing SimpliDB

---

SimpliDB can be installed from the GitHub repository using pip. Follow the steps below to install SimpliDB:

1. Open a command prompt or gitbash terminal (NB: works mostly on gitbash).

2. Run the following command to install SimpliDB directly from the GitHub repository:

```shell
pip install git+https://github.com/maulydev/SimpliDB.git
```

<!-- [SimpliDB](https://github.com/maulydev/SimpliDB.git "Visit SimpliDB Repository") -->

3. Wait for the installation process to complete. Pip will download the SimpliDB package from the GitHub repository and install it along with any necessary dependencies.

4. Once the installation is finished, you can start using SimpliDB in your Python projects by importing the `SimpliDB` class:

```python
from simplidb import SimpliDB
```

## Create an instance of SimpliDB

```python
# This creates the database just by instantiating the object
db = SimpliDB("my_database.db")
```

OR

```python

# First instantiate
db = SimpliDB()

# this method connects to an existing database or create a new database if it does not exists
db.connect("database_name.db")
```

Here's how you can use the `create_table` method of the SimpliDB library:

```python
# Define the table name and columns
table_name = 'users'
columns = {
    'id': 'INTEGER',
    'name': 'TEXT',
    'age': 'INTEGER',
    'email': 'TEXT'
}

# Create the table
db.create_table(table_name, columns)
```

## Dropping a Table

To drop a table from the database, use the `drop_table` method:

```python
db.drop_table(table_name)
```

- `table_name` (str): The name of the table to be dropped.

## Truncating a Table

To remove all data from a table while keeping its structure intact, use the `truncate_table` method:

```python
db.truncate_table(table_name)
```

- `table_name` (str): The name of the table to be truncated.

## Renaming a Table

To change the name of a table, use the rename_table method:

```python
db.rename_table(old_table_name, new_table_name)
```

- `old_table_name` (str): The current name of the table.
- `new_table_name` (str): The new name for the table.

## Fetching Table Columns

To retrieve the column names of a table, use the `fetch_table_column` method:

```python
columns = db.fetch_table_column(table_name)
```

- `table_name` (str): The name of the table.

## Retrieving Table Query

To get the query of a table, use the `table_query` method:

```python
structure = db.table_query(table_name)
```

## Retrieving Table Info

To get the structure of a table, use the `table_info` method:

```python
structure = db.table_info(table_name)
```

- `table_name` (str): The name of the table.

## Getting a List of Tables

To obtain a list of tables in the database, use the tables property:

```python
table_list = db.__tables__
```

The `tables` property returns a list of table names.

## Adding Columns to a Table

The add_column method allows you to add one or more columns to an existing table.

```python
db.add_column(table_name, columns)
```

- `table_name` (str): The name of the table.
  `columns` (dict): A dictionary specifying the columns to be added, where the keys are the column names and the values are the column types.
  The `add_column` method executes the SQL statement ALTER TABLE table_name ADD COLUMN column_name column_type for each column in the provided dictionary. It adds the specified columns to the table and commits the changes to the database. Any errors encountered during the column addition process are handled gracefully.

## Dropping Columns from a Table

To drop one or more columns from an existing table, use the `drop_column` method.

```python
db.drop_column(table_name, columns)
```

- `table_name` (str): The name of the table.
  `columns` (list): A list of column names to be dropped.
  The `drop_column` method executes the SQL statement ALTER TABLE table_name DROP COLUMN column_name for each column in the provided list. It removes the specified columns from the table and commits the changes to the database. Any errors encountered during the column dropping process are handled gracefully.

## Renaming a Column

To rename a column in an existing table, use the `rename_column` method.

```python
db.rename_column(table_name, old_name, new_name)
```

- `table_name` (str): The name of the table.
- `old_name` (str): The current name of the column.
- `new_name` (str): The new name for the column.
  The `rename_column` method executes the SQL statement ALTER TABLE table_name RENAME COLUMN old_name TO new_name. It renames the specified column in the table and commits the changes to the database. Any errors encountered during the column renaming process are handled gracefully.

## Inserting Rows

The `insert_multiple` method allows you to insert multiple rows of data into a table.

```python
data = [
    ("user1", "password1",),
    ("user2", "password2",),
    ("user3", "password3",)
]

db.insert_multiple(table_name, data)
```

- `table_name` (str): The name of the table.
- `data` (list): A list of tuples, where each inner tuples represents a row of data to be inserted.
  The `insert_multiple` method uses the `executemany` function to efficiently execute the SQL statement INSERT INTO table_name VALUES (?, ?, ...), where the number of placeholders (?) matches the number of columns in the table. It inserts multiple rows of data into the table and commits the changes to the database. Any errors encountered during the insertion process are handled gracefully.

To insert a single row of data into a table, you can use the `insert_row` method.

```python
db.insert_row(table_name, data)
```

- `table_name` (str): The name of the table.
- `data` (list): A list containing the values for each column in the row.
  The `insert_row` method executes the SQL statement INSERT INTO table_name VALUES (?, ?, ...), where the number of placeholders (?) matches the number of values in the provided list. It inserts a single row of data into the table and commits the changes to the database. Any errors encountered during the insertion process are handled gracefully.

## Fetching Rows

To retrieve all rows from a table, you can use the `fetch_all` method.

```python
rows = db.fetch_all(table_name)
```

- `table_name` (str): The name of the table.
  The `fetch_all` method executes the SQL statement SELECT \* FROM table_name to fetch all rows from the table. It returns the result as a list of tuples, where each tuple represents a row of data. If any errors occur during the fetch process, an empty list is returned.

## Deleting Rows

To delete rows from a table based on a condition, use the `delete_row` method.

```python
operator = 'AND'  # Operator for multiple conditions (e.g., 'AND', 'OR')
condition = {'column1': value1, 'column2': value2, ...}  # Conditions for deletion

db.delete_row(table_name, operator, condition)
```

- `table_name` (str): The name of the table.
- `operator` (str): The logical operator to combine multiple conditions (e.g., 'AND', 'OR').
- `condition` (dict): A dictionary specifying the column-value pairs to be matched for deletion.
  The `delete_row` method constructs a SQL statement using the provided operator and conditions and executes it to delete the matching rows from the table. It commits the changes to the database. Any errors encountered during the deletion process are handled gracefully.

## Counting Rows

To count the number of rows in a table, use the `count_row` method.

```python
count = db.count_row(table_name)
```

- `table_name` (str): The name of the table.
  The `count_row` method executes the SQL statement `SELECT COUNT(\*) FROM table_name` to retrieve the count of rows in the table. It returns the result as a tuple containing the label "count" and the count value. If any errors occur during the count process, an empty tuple is returned.

## Retrieving Distinct Values from a Column

To retrieve distinct values from a specific column in a table, you can use the `fetch_distinct` method

```python
result = db.fetch_distinct(table_name, column_name)
```

- `table_name` (str): The name of the table from which you want to retrieve distinct values.
- `column_name` (str): The name of the column for which you want to retrieve distinct
  The `fetch_distinct` method executes a SQL query using the SELECT DISTINCT(column_name) FROM table_name statement. It returns a list of tuples, where each tuple represents a distinct value found in the specified column.

## Select Data from a Table

The select method allows you to retrieve data from a table in the database based on specified criteria.

```python
result = db.fetch(
    table_name="user",
    columns=("username", "age"),
    where="age > 17 AND username = 'value'",
    order_by=("username ASC", "age DESC"),
    limit=10,
)
```

- SQL functions like `SUM | AVG | MAX | MIN` can be used on the columns

```python
result = db.fetch(table_name="user", columns=("SUM(score)"), where="score > 7")
```

- `table_name` (str): The name of the table from which to select the data.
- `columns` (tuple): A tuple of column names to retrieve from the table. Defaults to all columns
- `where` (str, optional): A string representing the conditions to filter the data. Defaults to None.
- `order_by` (tuple, optional): A tuple of column names to specify the ordering of the results in either `ASC|DESC` ascending or descending. Defaults to None.
- `limit` (int, optional): The maximum number of rows to retrieve. Defaults to None, which means no limit.

## Executing Custom SQL Queries

The `execute_sql` method allows you to execute custom SQL queries on the database.

```python
query = "SELECT * FROM users WHERE username = ? AND password = ?"
params = ("john_doe", "password123")
result = db.execute_sql(query, params)
```

- `sql_query` (str): The SQL query to be executed.
- `params` (tuple): The SQL query parameters.
  The `execute_sql` method takes an SQL query as input and executes it using the cursor's `execute` method. It returns the result of the query execution. If any errors occur during the execution, an error message is printed, and None is returned.

```python
#NB: Custom SQL queries can be executed using the `fetch` OR the `execute_sql` method
```

For more custom sqlite3 queries [click here](https://www.sqlitetutorial.net/)

## Extending sqlite3

The `__extend__` method allows you to use the sqlite3 methods on the simplidb object

```python
data = [
    ("Monty Python Live at the Hollywood Bowl", 1982, 7.9),
    ("Monty Python's The Meaning of Life", 1983, 7.5),
    ("Monty Python's Life of Brian", 1979, 8.0),
]

simplidb.__extend__.executemany("INSERT INTO movie VALUES(?, ?, ?)", data)
simplidb.__extend__.commit()

res = simplidb.__extend__.execute("SELECT * FROM movie")
for x in res:
    print(x)
```

## Closing the Database Connection

To close the database connection and release any associated resources, use the `close` method.

```python
db.close()
```

The `close` method closes the cursor used for executing queries. If any errors occur during the closing process, they are printed.

## Issues

Report any issue relating go the package through this link.

- [Report Issue](https://github.com/maulydev/SimpliDB/issues)

## Authors

- [Mauly dotDev](https://github.com/maulydev)

## Version History

- 0.1.0-alpha (2023-05-09): Initial release
- 0.2.1-alpha (2023-05-14)

## License

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

This project is licensed under the [MIT License](https://opensource.org/licenses/MIT). See the [LICENSE](LICENSE) file for more details.

## Acknowledgement

We would like to express our appreciation to the open-source community for their invaluable contributions. Specifically, we are grateful to the creators of the sqlite3 module in Python. Their development of the sqlite3 module has provided us with a robust and efficient tool for working with SQLite databases in our project.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/maulydev/SimpliDB",
    "name": "simplidb",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": "",
    "keywords": "SQLite,database,wrapper,simple,db",
    "author": "Mauly dotDev",
    "author_email": "mauly.dev@email.com",
    "download_url": "https://files.pythonhosted.org/packages/e7/39/fdf8b2b4f067306c6390621621aa5edddb11bf50971322a86374922924db/simplidb-0.2.2a0.tar.gz",
    "platform": null,
    "description": "# SimpliDB\n\nThe `SimpliDB` class provides a simplified interface for interacting with a SQLite database. It offers methods to perform various operations related to tables, columns, and rows.\n\n### DB Methods\n\n- `connect`: Connect to an existing database or create new database if it does not exist\n\n### Table Methods\n\n- `create_table`: Creates a new table in the database with specified columns.\n- `drop_table`: Deletes a table from the database if it exists.\n- `truncate_table`: Removes all the data from a table while keeping the table structure intact.\n- `rename_table`: Renames a table.\n- `fetch_table_column` : Retrieve table columns\n- `table_query`: Retrieves the query for the table\n- `table_info`: Returns the table information\n- `__tables__`: Returns all tables in the database\n\n### Column Methods\n\n- `add_column`: Adds one or more columns to an existing table.\n- `drop_column`: Drops one or more columns from an existing table.\n- `rename_column`: Renames a column in an existing table.\n\n### Row Methods\n\n- `insert_multiple`: Inserts multiple rows of data into a table.\n- `insert_row`: Inserts a single row of data into a table.\n- `fetch_all`: Retrieves all rows from a table.\n- `delete_row`: Deletes rows from a table based on a condition.\n- `count_row`: Counts the number of rows in a table.\n\n### Other Methods\n\n- `execute_sql`: Executes a custom SQL query on the database.\n- `close`: Closes the database connection.\n- `__extend__`: Allows you to use the sqlite3 methods on the simplidb object\n\nThe `SimpliDB` class simplifies common database operations, such as creating and manipulating tables, managing columns, inserting and retrieving rows, and executing custom SQL queries. It abstracts away the complexities of working directly with SQLite, providing a user-friendly interface for database interactions.\n\nFeel free to explore and use the methods provided by `SimpliDB` to streamline your SQLite database operations.\n\n# Getting Started\n\n## Dependencies\n\nTo use the provided code, ensure that the following dependencies and prerequisites are met:\n\n### Python\n\n- Python: Make sure you have Python installed on your system. The code provided should work with Python 3.x versions.\n\nNo additional libraries or external dependencies are required for the code. The code utilizes the built-in `sqlite3` module, which is part of the Python Standard Library.\n\n### Operating System\n\nThe code should work on any operating system that supports Python and the `sqlite3` module. This includes Windows, macOS, and Linux distributions.\n\nEnsure that you have a compatible version of Python installed on your system.\n\n## Installing SimpliDB\n\n---\n\nSimpliDB can be installed from the GitHub repository using pip. Follow the steps below to install SimpliDB:\n\n1. Open a command prompt or gitbash terminal (NB: works mostly on gitbash).\n\n2. Run the following command to install SimpliDB directly from the GitHub repository:\n\n```shell\npip install git+https://github.com/maulydev/SimpliDB.git\n```\n\n<!-- [SimpliDB](https://github.com/maulydev/SimpliDB.git \"Visit SimpliDB Repository\") -->\n\n3. Wait for the installation process to complete. Pip will download the SimpliDB package from the GitHub repository and install it along with any necessary dependencies.\n\n4. Once the installation is finished, you can start using SimpliDB in your Python projects by importing the `SimpliDB` class:\n\n```python\nfrom simplidb import SimpliDB\n```\n\n## Create an instance of SimpliDB\n\n```python\n# This creates the database just by instantiating the object\ndb = SimpliDB(\"my_database.db\")\n```\n\nOR\n\n```python\n\n# First instantiate\ndb = SimpliDB()\n\n# this method connects to an existing database or create a new database if it does not exists\ndb.connect(\"database_name.db\")\n```\n\nHere's how you can use the `create_table` method of the SimpliDB library:\n\n```python\n# Define the table name and columns\ntable_name = 'users'\ncolumns = {\n    'id': 'INTEGER',\n    'name': 'TEXT',\n    'age': 'INTEGER',\n    'email': 'TEXT'\n}\n\n# Create the table\ndb.create_table(table_name, columns)\n```\n\n## Dropping a Table\n\nTo drop a table from the database, use the `drop_table` method:\n\n```python\ndb.drop_table(table_name)\n```\n\n- `table_name` (str): The name of the table to be dropped.\n\n## Truncating a Table\n\nTo remove all data from a table while keeping its structure intact, use the `truncate_table` method:\n\n```python\ndb.truncate_table(table_name)\n```\n\n- `table_name` (str): The name of the table to be truncated.\n\n## Renaming a Table\n\nTo change the name of a table, use the rename_table method:\n\n```python\ndb.rename_table(old_table_name, new_table_name)\n```\n\n- `old_table_name` (str): The current name of the table.\n- `new_table_name` (str): The new name for the table.\n\n## Fetching Table Columns\n\nTo retrieve the column names of a table, use the `fetch_table_column` method:\n\n```python\ncolumns = db.fetch_table_column(table_name)\n```\n\n- `table_name` (str): The name of the table.\n\n## Retrieving Table Query\n\nTo get the query of a table, use the `table_query` method:\n\n```python\nstructure = db.table_query(table_name)\n```\n\n## Retrieving Table Info\n\nTo get the structure of a table, use the `table_info` method:\n\n```python\nstructure = db.table_info(table_name)\n```\n\n- `table_name` (str): The name of the table.\n\n## Getting a List of Tables\n\nTo obtain a list of tables in the database, use the tables property:\n\n```python\ntable_list = db.__tables__\n```\n\nThe `tables` property returns a list of table names.\n\n## Adding Columns to a Table\n\nThe add_column method allows you to add one or more columns to an existing table.\n\n```python\ndb.add_column(table_name, columns)\n```\n\n- `table_name` (str): The name of the table.\n  `columns` (dict): A dictionary specifying the columns to be added, where the keys are the column names and the values are the column types.\n  The `add_column` method executes the SQL statement ALTER TABLE table_name ADD COLUMN column_name column_type for each column in the provided dictionary. It adds the specified columns to the table and commits the changes to the database. Any errors encountered during the column addition process are handled gracefully.\n\n## Dropping Columns from a Table\n\nTo drop one or more columns from an existing table, use the `drop_column` method.\n\n```python\ndb.drop_column(table_name, columns)\n```\n\n- `table_name` (str): The name of the table.\n  `columns` (list): A list of column names to be dropped.\n  The `drop_column` method executes the SQL statement ALTER TABLE table_name DROP COLUMN column_name for each column in the provided list. It removes the specified columns from the table and commits the changes to the database. Any errors encountered during the column dropping process are handled gracefully.\n\n## Renaming a Column\n\nTo rename a column in an existing table, use the `rename_column` method.\n\n```python\ndb.rename_column(table_name, old_name, new_name)\n```\n\n- `table_name` (str): The name of the table.\n- `old_name` (str): The current name of the column.\n- `new_name` (str): The new name for the column.\n  The `rename_column` method executes the SQL statement ALTER TABLE table_name RENAME COLUMN old_name TO new_name. It renames the specified column in the table and commits the changes to the database. Any errors encountered during the column renaming process are handled gracefully.\n\n## Inserting Rows\n\nThe `insert_multiple` method allows you to insert multiple rows of data into a table.\n\n```python\ndata = [\n    (\"user1\", \"password1\",),\n    (\"user2\", \"password2\",),\n    (\"user3\", \"password3\",)\n]\n\ndb.insert_multiple(table_name, data)\n```\n\n- `table_name` (str): The name of the table.\n- `data` (list): A list of tuples, where each inner tuples represents a row of data to be inserted.\n  The `insert_multiple` method uses the `executemany` function to efficiently execute the SQL statement INSERT INTO table_name VALUES (?, ?, ...), where the number of placeholders (?) matches the number of columns in the table. It inserts multiple rows of data into the table and commits the changes to the database. Any errors encountered during the insertion process are handled gracefully.\n\nTo insert a single row of data into a table, you can use the `insert_row` method.\n\n```python\ndb.insert_row(table_name, data)\n```\n\n- `table_name` (str): The name of the table.\n- `data` (list): A list containing the values for each column in the row.\n  The `insert_row` method executes the SQL statement INSERT INTO table_name VALUES (?, ?, ...), where the number of placeholders (?) matches the number of values in the provided list. It inserts a single row of data into the table and commits the changes to the database. Any errors encountered during the insertion process are handled gracefully.\n\n## Fetching Rows\n\nTo retrieve all rows from a table, you can use the `fetch_all` method.\n\n```python\nrows = db.fetch_all(table_name)\n```\n\n- `table_name` (str): The name of the table.\n  The `fetch_all` method executes the SQL statement SELECT \\* FROM table_name to fetch all rows from the table. It returns the result as a list of tuples, where each tuple represents a row of data. If any errors occur during the fetch process, an empty list is returned.\n\n## Deleting Rows\n\nTo delete rows from a table based on a condition, use the `delete_row` method.\n\n```python\noperator = 'AND'  # Operator for multiple conditions (e.g., 'AND', 'OR')\ncondition = {'column1': value1, 'column2': value2, ...}  # Conditions for deletion\n\ndb.delete_row(table_name, operator, condition)\n```\n\n- `table_name` (str): The name of the table.\n- `operator` (str): The logical operator to combine multiple conditions (e.g., 'AND', 'OR').\n- `condition` (dict): A dictionary specifying the column-value pairs to be matched for deletion.\n  The `delete_row` method constructs a SQL statement using the provided operator and conditions and executes it to delete the matching rows from the table. It commits the changes to the database. Any errors encountered during the deletion process are handled gracefully.\n\n## Counting Rows\n\nTo count the number of rows in a table, use the `count_row` method.\n\n```python\ncount = db.count_row(table_name)\n```\n\n- `table_name` (str): The name of the table.\n  The `count_row` method executes the SQL statement `SELECT COUNT(\\*) FROM table_name` to retrieve the count of rows in the table. It returns the result as a tuple containing the label \"count\" and the count value. If any errors occur during the count process, an empty tuple is returned.\n\n## Retrieving Distinct Values from a Column\n\nTo retrieve distinct values from a specific column in a table, you can use the `fetch_distinct` method\n\n```python\nresult = db.fetch_distinct(table_name, column_name)\n```\n\n- `table_name` (str): The name of the table from which you want to retrieve distinct values.\n- `column_name` (str): The name of the column for which you want to retrieve distinct\n  The `fetch_distinct` method executes a SQL query using the SELECT DISTINCT(column_name) FROM table_name statement. It returns a list of tuples, where each tuple represents a distinct value found in the specified column.\n\n## Select Data from a Table\n\nThe select method allows you to retrieve data from a table in the database based on specified criteria.\n\n```python\nresult = db.fetch(\n    table_name=\"user\",\n    columns=(\"username\", \"age\"),\n    where=\"age > 17 AND username = 'value'\",\n    order_by=(\"username ASC\", \"age DESC\"),\n    limit=10,\n)\n```\n\n- SQL functions like `SUM | AVG | MAX | MIN` can be used on the columns\n\n```python\nresult = db.fetch(table_name=\"user\", columns=(\"SUM(score)\"), where=\"score > 7\")\n```\n\n- `table_name` (str): The name of the table from which to select the data.\n- `columns` (tuple): A tuple of column names to retrieve from the table. Defaults to all columns\n- `where` (str, optional): A string representing the conditions to filter the data. Defaults to None.\n- `order_by` (tuple, optional): A tuple of column names to specify the ordering of the results in either `ASC|DESC` ascending or descending. Defaults to None.\n- `limit` (int, optional): The maximum number of rows to retrieve. Defaults to None, which means no limit.\n\n## Executing Custom SQL Queries\n\nThe `execute_sql` method allows you to execute custom SQL queries on the database.\n\n```python\nquery = \"SELECT * FROM users WHERE username = ? AND password = ?\"\nparams = (\"john_doe\", \"password123\")\nresult = db.execute_sql(query, params)\n```\n\n- `sql_query` (str): The SQL query to be executed.\n- `params` (tuple): The SQL query parameters.\n  The `execute_sql` method takes an SQL query as input and executes it using the cursor's `execute` method. It returns the result of the query execution. If any errors occur during the execution, an error message is printed, and None is returned.\n\n```python\n#NB: Custom SQL queries can be executed using the `fetch` OR the `execute_sql` method\n```\n\nFor more custom sqlite3 queries [click here](https://www.sqlitetutorial.net/)\n\n## Extending sqlite3\n\nThe `__extend__` method allows you to use the sqlite3 methods on the simplidb object\n\n```python\ndata = [\n    (\"Monty Python Live at the Hollywood Bowl\", 1982, 7.9),\n    (\"Monty Python's The Meaning of Life\", 1983, 7.5),\n    (\"Monty Python's Life of Brian\", 1979, 8.0),\n]\n\nsimplidb.__extend__.executemany(\"INSERT INTO movie VALUES(?, ?, ?)\", data)\nsimplidb.__extend__.commit()\n\nres = simplidb.__extend__.execute(\"SELECT * FROM movie\")\nfor x in res:\n    print(x)\n```\n\n## Closing the Database Connection\n\nTo close the database connection and release any associated resources, use the `close` method.\n\n```python\ndb.close()\n```\n\nThe `close` method closes the cursor used for executing queries. If any errors occur during the closing process, they are printed.\n\n## Issues\n\nReport any issue relating go the package through this link.\n\n- [Report Issue](https://github.com/maulydev/SimpliDB/issues)\n\n## Authors\n\n- [Mauly dotDev](https://github.com/maulydev)\n\n## Version History\n\n- 0.1.0-alpha (2023-05-09): Initial release\n- 0.2.1-alpha (2023-05-14)\n\n## License\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT). See the [LICENSE](LICENSE) file for more details.\n\n## Acknowledgement\n\nWe would like to express our appreciation to the open-source community for their invaluable contributions. Specifically, we are grateful to the creators of the sqlite3 module in Python. Their development of the sqlite3 module has provided us with a robust and efficient tool for working with SQLite databases in our project.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A simple SQLite database wrapper (A package that provides a simplified interface for working with SQLite databases.)",
    "version": "0.2.2a0",
    "project_urls": {
        "Bug Tracker": "https://github.com/maulydev/SimpliDB/issues",
        "Homepage": "https://github.com/maulydev/SimpliDB",
        "Source Code": "https://github.com/maulydev/SimpliDB"
    },
    "split_keywords": [
        "sqlite",
        "database",
        "wrapper",
        "simple",
        "db"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef6826739713ae9462943d3d91ef2df6887535f8077d98fcbf3af83e09c1311a",
                "md5": "dc04a41f916d7fa7c2b1a7e07173543f",
                "sha256": "4512f719fb83a60f620bd32911c36f374a7753692b31496dadd92ed56331e561"
            },
            "downloads": -1,
            "filename": "simplidb-0.2.2a0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "dc04a41f916d7fa7c2b1a7e07173543f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.0",
            "size": 8518,
            "upload_time": "2023-09-13T15:21:34",
            "upload_time_iso_8601": "2023-09-13T15:21:34.392015Z",
            "url": "https://files.pythonhosted.org/packages/ef/68/26739713ae9462943d3d91ef2df6887535f8077d98fcbf3af83e09c1311a/simplidb-0.2.2a0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e739fdf8b2b4f067306c6390621621aa5edddb11bf50971322a86374922924db",
                "md5": "ee8b45ebeebc449902e282163f890b50",
                "sha256": "d1ab8cb7037bca9394ae8e10dac11292561cc9d9c00cf3db9595fafbe67cf97d"
            },
            "downloads": -1,
            "filename": "simplidb-0.2.2a0.tar.gz",
            "has_sig": false,
            "md5_digest": "ee8b45ebeebc449902e282163f890b50",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 13372,
            "upload_time": "2023-09-13T15:21:35",
            "upload_time_iso_8601": "2023-09-13T15:21:35.948026Z",
            "url": "https://files.pythonhosted.org/packages/e7/39/fdf8b2b4f067306c6390621621aa5edddb11bf50971322a86374922924db/simplidb-0.2.2a0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-13 15:21:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "maulydev",
    "github_project": "SimpliDB",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "simplidb"
}
        
Elapsed time: 0.11339s