Good day.
I use the Firebird 2.5 server and Visual Studio 2005, the C # language. There is a task to create a database programmatically.
I apply the following construction:
FbConnectionStringBuilder connectString = new FbConnectionStringBuilder(); connectString.Database = myPath; connectString.Dialect = 3; connectString.UserID = "SYSDBA"; connectString.Password = "my_pass"; connectString.Charset = "win1251"; FbConnection.CreateDatabase(connectString.ConnectionString, 8192, false, false);
By itself, the code is working, creating a database. But the problem is that the base is always created with the default value page_size = 4096, although I am passing the value 8192 to the method. Please tell me the possible cause of the error.