Subject | Re: [Firebird-Java] Encoding problem with database when starting server as windows server |
---|---|
Author | Roman Rokytskyy |
Post date | 2011-01-17T23:00:06Z |
> I need to know where to set the encoding stuff to make the app work withYou can specify encoding=UTF8 in the JDBC URL, e.g.:
> other language characters even if it starts as windows service.
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