PostgreSQL.create_schema¶
- PostgreSQL.create_schema(schema_name, verbose=False)[source]¶
Create a schema.
- Parameters:
schema_name (str) – Name of the schema to be created.
verbose (bool | int) – Whether to print relevant information to the console; defaults to
False
.
Examples:
>>> from pyhelpers.dbms import PostgreSQL >>> testdb = PostgreSQL(database_name='testdb', verbose=True) Password (postgres@localhost:5432): *** Creating a database: "testdb" ... Done. Connecting postgres:***@localhost:5432/testdb ... Successfully. >>> test_schema_name = 'test_schema' >>> testdb.create_schema(schema_name=test_schema_name, verbose=True) Creating a schema: "test_schema" ... Done. >>> testdb.schema_exists(schema_name=test_schema_name) True >>> testdb.drop_database(verbose=True) # Delete the database "testdb" To drop the database "testdb" from postgres:***@localhost:5432 ? [No]|Yes: yes Dropping "testdb" ... Done.