OrientDB – Drop Class The Drop Class command removes a class from the schema. It is important to pay attention and maintain a consistent schema. For example, avoid to remove classes that are super-classes of others. The associated cluster won”t be deleted. The following statement is the basic syntax of Drop Class command. DROP CLASS […]
Category Archives: orientdb
OrientDB – Commit Database Similar to RDBMS, OrientDB also provides transaction concepts like Commit and Rollback. Commit refers to closing the transaction by saving all changes to the database. Rollback refers to recovering the database state to the point where you opened the transaction. The following statement is the basic syntax of the Commit database […]
OrientDB – Drop Database Similar to RDBMS, OrientDB provides the feature to drop a database. Drop database refers to removing a database completely. The following statement is the basic syntax of the Drop database command. DROP DATABASE [<database-name> <server-username> <server-user-password>] Following are the details about the options in the above syntax. <database-name> − Database name […]