feat: Support CREATE DATABASE and ALTER DATABASE in JDBC #457
Labels
api: spanner
Issues related to the googleapis/java-spanner-jdbc API.
type: feature request
‘Nice-to-have’ improvement, new feature or different behavior or design.
The JDBC driver supports all DDL statements that affect an existing database, but currently does not support
CREATE DATABASE
. It also does not support theALTER DATABASE
statement for any other database than the one that the client is connected to at that moment. This makes it difficult to create and maintain databases using JDBC. The JDBC driver should therefore support:CREATE DATABASE
statementsALTER DATABASE
statements for other databases than the one the client is connected to at that moment.DROP DATABASE
statementsSHOW VARIABLE DATABASES
)The text was updated successfully, but these errors were encountered: