Subject Re: [Firebird-Java] Page Size on CREATE DATABASE
Author Roman Rokytskyy
> Can someone provide me with some pointers on how to modify FBManager
> so that
>
> public void createDatabase(String fileName, String user, String
> password)
>
> ...will allow me to specify the page size?
>
> Right now I have to create the database and then backup and restore
> it with a new page size. By default a page is 4096, I'm want 8192.

The method above uses GDS API and it seems to ignore anything you pass
there. Another option is using isc_dsql_execute_immediate, however I did not
manage to implement it for type 4 JDBC driver. Though it should work in case
of type 2 JDBC driver without any problem.

Roman