Connectsql

Latest version: v2.1

Safety actively analyzes 623035 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

2.1

![Screenshot 2020-10-11 220918](https://user-images.githubusercontent.com/61358755/95688587-03178e80-0c29-11eb-990c-d474a5b01cc6.jpg)
![Screenshot 2020-10-11 220937](https://user-images.githubusercontent.com/61358755/95688589-0579e880-0c29-11eb-9436-e09c8c697812.jpg)
![Screenshot 2020-10-11 221401](https://user-images.githubusercontent.com/61358755/95688592-06ab1580-0c29-11eb-9b66-810e2c420f3c.jpg)
Help on ConnectSql in module Connect object:

class ConnectSql(builtins.object)
| ConnectSql(Username, Password)
|
| ConnectSQL is a very useful & perfectly designed module to Connect to SQL database & retrieve data.
|
| Methods defined here:
|
| __init__(self, Username, Password)
| Initialize some values before Starting.
| Parameters:
| Username: Enter Your Username.
| Password: Enter your Password.
| By default host is Local Host as per your machine's IP Address.
| Recommendation:
| We Recommend setting the default value of the table which will help you in skipping parameters.
| Method: <Object>.default_table(self).
|
| alter(self, table=None, modify=None, change=None, add_column=None, add_key=None, drop_column=None, drop_key=None)
| Alter the Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| modify: Modify the table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| change: Change the name/Positions of the table.
| Do not type the complete Query.
| Just type in required format after change clause as per SQL syntax.
| add_column: Add a column to your Database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| add_key: Add a key to the database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| drop_column: Drop a Column from any Database.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Column keyword, We'll do it for you.
| drop_key: Drop a key from any table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Key keyword, We'll do it for you.
|
| create_db(self, dbname)
| Create Database Method.
| Parameters:
| dbname: Name of the database.
| Just type name of the database & Create it.
| Its Simple. Isn't it ?
|
| create_table(self, query)
| Create a table within Minutes.
| Parameters:
| query: Type the complete query required for creating a database.
|
| default_table(self, table)
| Most Exclusive.
| Parameters:
| table: Set the default value for table.
| This will help you in skipping Parameters.
| We Recommend this Method before starting to work.
|
| delete(self, query=None, complete=None)
| Delete any rows.
| Parameters:
| query: Type the complete query required for deleting from a database.
| complete: Delete all records from a database.
| default is None (Applicable only when you set default value for table).
|
| desc(self, table=None)
| Describe a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| disp_table(self, table=None)
| Display All Records of a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| drop(self, table=None, column=None, key=None)
| Another alternative for dropping keys etc. from Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| column: Just write the name of the Column to be dropped.
| key: Just write the name of key to be Dropped.
|
| insert_values(self, values, columns=None, table=None)
| This Method insert values in the table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| values: Use Single Query String for Values Parameter.
| columns: Columns must be set of all logical columns in the table.
|
| query(self, query, table=None)
| For Complex Queries use this Method.
| Parameters:
| query: Type the Complete Query to retrieve data.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| select(self, query, table=None)
| Select & Retrieve data from Mysql.
| Parameters:
| query: Type the complete query as per your needs.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| show_db(self)
| This methods helps you show all the database stored in your Machine.
|
| show_result(self, data, table=None)
| Not for Users. Only for Developers.
|
| show_tables(self)
| Shows all the tables after in a Given database.
|
| update(self, set, where, table=None)
| Update the values in a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| set: Conditions for Set Clause.
| Type as per SQL Syntax.
| where: Conditions after where clause.
| Type as per SQL Syntax.
|
| use(self, database)
| Use the required Database.
| AS per SQL Syntax use database clause is necessary.
| This method helps you in using the database.
| Parameters:
| database: Name of database to be set.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)


Process finished with exit code 0

So Guys!!!
Just move on for installing this awesome SQLConnect pack.


Developer:
Kailash Sharma

2.0

![Screenshot 2020-10-11 220918](https://user-images.githubusercontent.com/61358755/95688139-78816000-0c25-11eb-97c6-fa5a930846b1.jpg)
![Screenshot 2020-10-11 220937](https://user-images.githubusercontent.com/61358755/95688140-7a4b2380-0c25-11eb-8184-f6c85128b5c8.jpg)
![Screenshot 2020-10-11 221401](https://user-images.githubusercontent.com/61358755/95688141-7ae3ba00-0c25-11eb-8940-c43798cfc636.jpg)
Help on ConnectSql in module Connect object:

class ConnectSql(builtins.object)
| ConnectSql(Username, Password)
|
| ConnectSQL is a very useful & perfectly designed module to Connect to SQL database & retrieve data.
|
| Methods defined here:
|
| __init__(self, Username, Password)
| Initialize some values before Starting.
| Parameters:
| Username: Enter Your Username.
| Password: Enter your Password.
| By default host is Local Host as per your machine's IP Address.
| Recommendation:
| We Recommend setting the default value of the table which will help you in skipping parameters.
| Method: <Object>.default_table(self).
|
| alter(self, table=None, modify=None, change=None, add_column=None, add_key=None, drop_column=None, drop_key=None)
| Alter the Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| modify: Modify the table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| change: Change the name/Positions of the table.
| Do not type the complete Query.
| Just type in required format after change clause as per SQL syntax.
| add_column: Add a column to your Database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| add_key: Add a key to the database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| drop_column: Drop a Column from any Database.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Column keyword, We'll do it for you.
| drop_key: Drop a key from any table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Key keyword, We'll do it for you.
|
| create_db(self, dbname)
| Create Database Method.
| Parameters:
| dbname: Name of the database.
| Just type name of the database & Create it.
| Its Simple. Isn't it ?
|
| create_table(self, query)
| Create a table within Minutes.
| Parameters:
| query: Type the complete query required for creating a database.
|
| default_table(self, table)
| Most Exclusive.
| Parameters:
| table: Set the default value for table.
| This will help you in skipping Parameters.
| We Recommend this Method before starting to work.
|
| delete(self, query=None, complete=None)
| Delete any rows.
| Parameters:
| query: Type the complete query required for deleting from a database.
| complete: Delete all records from a database.
| default is None (Applicable only when you set default value for table).
|
| desc(self, table=None)
| Describe a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| disp_table(self, table=None)
| Display All Records of a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| drop(self, table=None, column=None, key=None)
| Another alternative for dropping keys etc. from Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| column: Just write the name of the Column to be dropped.
| key: Just write the name of key to be Dropped.
|
| insert_values(self, values, columns=None, table=None)
| This Method insert values in the table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| values: Use Single Query String for Values Parameter.
| columns: Columns must be set of all logical columns in the table.
|
| query(self, query, table=None)
| For Complex Queries use this Method.
| Parameters:
| query: Type the Complete Query to retrieve data.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| select(self, query, table=None)
| Select & Retrieve data from Mysql.
| Parameters:
| query: Type the complete query as per your needs.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| show_db(self)
| This methods helps you show all the database stored in your Machine.
|
| show_result(self, data, table=None)
| Not for Users. Only for Developers.
|
| show_tables(self)
| Shows all the tables after in a Given database.
|
| update(self, set, where, table=None)
| Update the values in a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| set: Conditions for Set Clause.
| Type as per SQL Syntax.
| where: Conditions after where clause.
| Type as per SQL Syntax.
|
| use(self, database)
| Use the required Database.
| AS per SQL Syntax use database clause is necessary.
| This method helps you in using the database.
| Parameters:
| database: Name of database to be set.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)


Process finished with exit code 0

So Guys!!!
Just move on for installing this awesome SQLConnect pack.


Developer:
Kailash Sharma

1.0

![Screenshot 2020-10-11 220918](https://user-images.githubusercontent.com/61358755/95684419-495ff400-0c0f-11eb-8f75-bc25abe2010c.jpg)
![Screenshot 2020-10-11 220937](https://user-images.githubusercontent.com/61358755/95684424-4bc24e00-0c0f-11eb-89ac-d856bc0bc469.jpg)
![Screenshot 2020-10-11 221401](https://user-images.githubusercontent.com/61358755/95684426-4d8c1180-0c0f-11eb-9541-1f527a3a6136.jpg)


Connector/Mysql connect.py"

Database Changed.
Help on ConnectSql in module Connect object:

class ConnectSql(builtins.object)
| ConnectSql(Username, Password)
|
| ConnectSQL is a very useful & perfectly designed module to Connect to SQL database & retrieve data.
|
| Methods defined here:
|
| __init__(self, Username, Password)
| Initialize some values before Starting.
| Parameters:
| Username: Enter Your Username.
| Password: Enter your Password.
| By default host is Local Host as per your machine's IP Address.
| Recommendation:
| We Recommend setting the default value of the table which will help you in skipping parameters.
| Method: <Object>.default_table(self).
|
| alter(self, table=None, modify=None, change=None, add_column=None, add_key=None, drop_column=None, drop_key=None)
| Alter the Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| modify: Modify the table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| change: Change the name/Positions of the table.
| Do not type the complete Query.
| Just type in required format after change clause as per SQL syntax.
| add_column: Add a column to your Database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| add_key: Add a key to the database.
| Do not type the complete Query.
| Just type in required format after Add clause as per SQL syntax.
| drop_column: Drop a Column from any Database.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Column keyword, We'll do it for you.
| drop_key: Drop a key from any table.
| Do not type the complete Query.
| Just type in required format after modify clause as per SQL syntax.
| Do not type Key keyword, We'll do it for you.
|
| create_db(self, dbname)
| Create Database Method.
| Parameters:
| dbname: Name of the database.
| Just type name of the database & Create it.
| Its Simple. Isn't it ?
|
| create_table(self, query)
| Create a table within Minutes.
| Parameters:
| query: Type the complete query required for creating a database.
|
| default_table(self, table)
| Most Exclusive.
| Parameters:
| table: Set the default value for table.
| This will help you in skipping Parameters.
| We Recommend this Method before starting to work.
|
| delete(self, query=None, complete=None)
| Delete any rows.
| Parameters:
| query: Type the complete query required for deleting from a database.
| complete: Delete all records from a database.
| default is None (Applicable only when you set default value for table).
|
| desc(self, table=None)
| Describe a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| disp_table(self, table=None)
| Display All Records of a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| drop(self, table=None, column=None, key=None)
| Another alternative for dropping keys etc. from Table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| column: Just write the name of the Column to be dropped.
| key: Just write the name of key to be Dropped.
|
| insert_values(self, values, columns=None, table=None)
| This Method insert values in the table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| values: Use Single Query String for Values Parameter.
| columns: Columns must be set of all logical columns in the table.
|
| query(self, query, table=None)
| For Complex Queries use this Method.
| Parameters:
| query: Type the Complete Query to retrieve data.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| select(self, query, table=None)
| Select & Retrieve data from Mysql.
| Parameters:
| query: Type the complete query as per your needs.
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
|
| show_db(self)
| This methods helps you show all the database stored in your Machine.
|
| show_result(self, data, table=None)
| Not for Users. Only for Developers.
|
| show_tables(self)
| Shows all the tables after in a Given database.
|
| update(self, set, where, table=None)
| Update the values in a table.
| Parameters:
| table: Name of the Table
| default is None (Applicable only when you set default value for table).
| set: Conditions for Set Clause.
| Type as per SQL Syntax.
| where: Conditions after where clause.
| Type as per SQL Syntax.
|
| use(self, database)
| Use the required Database.
| AS per SQL Syntax use database clause is necessary.
| This method helps you in using the database.
| Parameters:
| database: Name of database to be set.
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)


Process finished with exit code 0

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.