Hello,
If I have created two connections in the same thread with different parameters, like the _CSV_Separator parameter, the second time the parameter isn't used anymore and the one from the first connection seems to be used.
Kind regards,
Remco Schoen
|
What's your test code? Whether it's used for the same table?
|
Hello,
I'm using different url's for the same table, that is true. I'm now in the process of writing JUnit-tests for known problems and acceptance of your driver.
In the normal use of our program it is also possible, that the user can change these parameters. For instance when they see, that in stead of the semicolon a comma was used in a file.
|
>I'm using different url's for the same table, that is true.
For the same table, it won't redo parse when it found the parsed file information. Only when you use delayedClose=0 connection propery and the first connection was closed, then the second connection will reload the table.
|
Okay, that helps for the JUnit-tests and fast switching parameters in the url. Now my JUnit-tests run fine.
|