Subject Re: [Firebird-Java] Charset conection pool tomcat
Author Federico Tello Gentile
vladcamp wrote:
> How I define the Charset in a conection pool in tomcat?
>

See the ?lc_ctype=...in the url


In the application's context.xml

<?xml version="1.0" encoding="UTF-8"?>
<Context path="/PooledWebapp" reloadable="false">
<Resource auth="Container"
driverClassName="org.firebirdsql.jdbc.FBDriver"
maxActive="100" maxIdle="30" maxWait="100"
name="jdbc/dbTest"
password="masterkey"
type="javax.sql.DataSource"

url="jdbc:firebirdsql://localhost:3050/c:\fede\test.fdb?lc_ctype=UNICODE_FSS"
username="SYSDBA"/>
</Context>