gpt4 book ai didi

tomcat server.xml sybase 属性

转载 作者:行者123 更新时间:2023-11-28 22:14:32 26 4
gpt4 key购买 nike

server.xml对于 Tomcat,我有一个 <Resource>带有正确工作的 Sybase 数据源的标记。我需要将下面的 Sybase 特定属性添加到 <Resource> :

GET_BY_NAME_USES_COLUMN_LABEL = true

但我不确定该放在哪里。我该怎么做?

最佳答案

我不使用 Sybase,所以我不能直接说出来,但在所有其他数据库上,这些类型的连接属性通常以 JDBC 连接 URL 的查询字符串格式传递。 Sybase JDBC documentation证实这对 Sybase 也是如此。以下是相关摘录:

To set a connection property in the URL, append the property name and its value to the URL definition. Use this syntax:

jdbc:sybase:Tds:host:port/database?property_name=value

To set multiple connection properties, append each additional connection property and value, preceded by "&." For example:

jdbc:sybase:Tds:myserver:1234/mydatabase?LITERAL_PARAMS=true&PACKETSIZE=512&HOSTNAME=myhost

所以,这应该为你做:

jdbc:sybase:Tds:localhost:1234?GET_BY_NAME_USES_COLUMN_LABEL=true

关于tomcat server.xml sybase 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7906018/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com