When defining the database, the connection object is too long, so the object is separated from the definition first, and then database.createdb();
In order to simplify and enhance readability when separating objects, some typesetting and possible errors will be made, as follows:
//The following two cases are possible
dim a={"a":"123","b":"fg"}
dim a={
"a":"123",
"b":"fg"}
//One of the following cases is not allowed
dim a={
"a":"123",
"b":"fg"
}
//Separating the closing curly brace from the last element does not work.