can i use jdbc driver other than type 1 for MS-ACCESS

Can anybody provide solution for me, can it be possible for me to use JDBC Driver other than type 1 i.e JDBC-ODBC for MS-Access, i want to improve performance.As i want to trans fer data to and fro from Web Server.Thanks in advance.Khiz_eng
[289 byte] By [khiz_eng] at [2007-9-26 6:48:28]
# 1
>i want to improve performance.Unlikely.Have you used a performance/profiling tool to figure out where your bottlenecks are?
jschell at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
Hi Jshell,Thanx for your response, i have used log files there i found insertion is the problem means it is taking time, my application copy row from one table to another table and my table consists of 31 fields.RegardsKhiz_eng
khiz_eng at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
Hi Jschell,I am sorry , i have wrongly spelled your name.Its my mistake.RegardsKhiz_eng
khiz_eng at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 4

Can you avoid locking issues: use lowest transaction isolation?

Do you have several indexes on the target table?

Try to switch them off while copying (drop and re-create afterwards).

Another idea:

why should you hold such big rows redundantly?

Has it to be a different table, or can it be done with a 1-char field containing mode or state or such a thing, representing the same information as if the row was in another table?

Hartmut at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 5
Hi Hartmut,I need to have all data in one table, please provide me with solution.Regardskhiz_eng
khiz_eng at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 6
Can anybody provide me solution for my problemThanks in addvance.khiz_eng
khiz_eng at 2007-7-1 16:14:13 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...