下面將提供一些簡單的步驟,教你如何在Resin下使用PHP與mysql數據庫的連接操作。關於PHP怎麼在Resin下運行,請見我的另一篇文章,在Resin中使用PHP。
步驟如下:
一、下載MySql的jdbc驅動
可以從http://www.mysql.com/products/connector/j/ 下載。
二、配置 resin安裝目錄/conf/resin.conf 文件
在文件中加入下面的部分:
<database>
<jndi-name>jdbc/mysql</jndi-name>
<driver type="org.gjt.mm.mysql.Driver">
<url>jdbc:mysql://localhost:3306/test</url>
<user></user>
<password></password>
</driver>
<prepared-statement-cache-size>8</prepared-statement-cache-size>
<max-connections>20</max-connections>
<max-idle-time>30s</max-idle-time>
</database>
三、修改 /Web-INF/web.xml文件加入數據配置引用
<web-app xmlns="http://caucho.com/ns/resin">
<servlet-mapping url-pattern="*.php"
servlet-class="com.caucho.quercus.servlet.QuercusServlet">
<init>
<compile>false</compile>
<database>jdbc/mysql</database>
</init>
</servlet-mapping>
</web-app>
通過以上步驟你可以使用mysql了。