Hi, i've a little problem with a database connection.
When i use
jdbc script the code works else when i try with jstl sql tags, the result is different.
The
java code is:
String url = "JDBC

DBC:Sofia";
String db_driver ="sun.jdbc.odbc.JdbcOdbcDriver";
Connection con = DB_bean.connetti(db_driver, url);
this works correctly;
the jstl tags are:
<sql:setDataSource driver="sun.jdbc.odbc.JdbcOdbcDriver"
url="JDBC

DBC:Sofia" var="db"/>
<sql:update dataSource="db" var="count">
INSERT INTO anagrafica VALUES ("luigi", "parigi")
</sql:update>
and
tomcat says me that:
javax.servlet.ServletException: Unable to get connection, DataSource invalid: "java.sql.SQLException: No suitable driver"
how i can to do?
bye