Can I set Microsoft SQL Server 2012 options such as ARITHABORT
programmatically from a (remote) Java client that uses Microsoft JDBC Driver 4.0? I've noticed that statement.execute("SET ARITHABORT ON")
returns false
and the expected effect seems missing, hence the question.
相关问题
- sql execution latency when assign to a variable
- Difference between Types.INTEGER and Types.NULL in
- What is the best way to cache a table from a (SQL)
- php PDO::FETCH_ASSOC doesnt detect select after ba
- Bulk update SQL Server C#
相关文章
- Java的JDBC可以返回HashMap吗?
- Entity Framework 4.3.1 failing to create (/open) a
- Code for inserting data into SQL Server database u
- Get the connected mysql database name (JDBC)
- Delete Every Alternate Row in SQL
- Linux based PHP install connecting to MsSQL Server
- SQL Azure Reset autoincrement
- How do we alias a Sql Server instance name used in
It certainly appears so. The code
returns
The ARITHABORT state should remain in effect for the life of the connection unless some other code changes it.