-
Hi Steve, Here is another gem into collection of rare bugs. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is the same as the with the Server name which is handled differently: |
Beta Was this translation helpful? Give feedback.
-
No further response - making assumption workaround given is sufficient for case when special characters are used in the database name. |
Beta Was this translation helpful? Give feedback.
This is the same as the with the Server name which is handled differently:
As a workaround you can wrap the name in curly braces as follows:
{[1234.5678]}
This will work in the build script without any further work. For the driver script you need to edit the driver script that is loaded and remove the double quotes, so change this:
set database "{[1234.5678]}";# Database containing the TPC Schema
to this:
set database {[1234.5678]};# Database containing the TPC Schema
This is essentially what the Server name already does so HammerDB wraps it in curly braces in the background and removes the quotes in the driver script.
Is this something that would be considered needed for the database nam…