提交 921c7163 authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Fix javadoc of ErrorCode.DATABASE_NOT_FOUND_1

上级 ccc04867
...@@ -611,13 +611,13 @@ public class ErrorCode { ...@@ -611,13 +611,13 @@ public class ErrorCode {
public static final int PARAMETER_NOT_SET_1 = 90012; public static final int PARAMETER_NOT_SET_1 = 90012;
/** /**
* The error with code <code>90013</code> is thrown when * The error with code <code>90013</code> is thrown when trying to open a
* trying to open a database that does not exist using the flag * database that does not exist remotely without enabling remote database
* IFEXISTS=TRUE, or when trying to access a database object with a catalog * creation first, or using the flag IFEXISTS=TRUE, or when trying to access
* name that does not match the database name. Example: * a database object with a catalog name that does not match the database
* name.
* <pre> * <pre>
* CREATE TABLE TEST(ID INT); * jdbc:h2:./database_that_does_not_exist
* SELECT XYZ.PUBLIC.TEST.ID FROM TEST;
* </pre> * </pre>
*/ */
public static final int DATABASE_NOT_FOUND_1 = 90013; public static final int DATABASE_NOT_FOUND_1 = 90013;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论