Subject Re: [Firebird-Java] Encoding problem with database when starting server as windows server
Author Roman Rokytskyy
> I need to know where to set the encoding stuff to make the app work with
> other language characters even if it starts as windows service.

You can specify encoding=UTF8 in the JDBC URL, e.g.:

jdbc:firebirdsql:localhost/3050:mydb?encoding=UTF8

But that will only affect the database. You would need to ensure that
your Tomcat processes UTF8 URLs correctly.

Roman