Skip to content
#

odbc

Here are 151 public repositories matching this topic...

MikeB2019x
MikeB2019x commented Apr 8, 2020

In your excellent documentation here you make reference to an integer code for SQL 'datetimeoffset' (ie. -155). I have looked and not found a single reference that can give me that or any of the other codes. Could you provide a reference?

Thanks for that documentation btw. Saved me a lot of time!

2881099
2881099 commented Apr 23, 2020

本篇文章内容引导,如何在 asp.net core 项目中使用特性(注解) 的方式管理事务。

UnitOfWorkManager 只可以管理 Repository 仓储对象的事务,直接 fsql.Insert<T>() 是不行的!!

支持六种传播方式(propagation),意味着跨方法的事务非常方便,并且支持同步异步:

  • Requierd:如果当前没有事务,就新建一个事务,如果已存在一个事务中,加入到这个事务中,默认的选择。
  • Supports:支持当前事务,如果没有当前事务,就以非事务方法执行。
  • Mandatory:使用当前事务,如果没有当前事务,就抛出异常。
  • NotSupported:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。
  • Never:以非事务方式执行操作,如果当前事务存在则抛出异常。
  • Nested:以嵌套事
amreisa
amreisa commented Feb 27, 2020

I need Some Hellp about instruction how to use SOCI from cmake as subporject "add_subdirectory(SOCI)"
I have long time try use It but SOCI::* not work. I know this about CMake but no one try to help. And How I can do in way from SOCI CMake script Variables. How I can do that ?

kjaanson
kjaanson commented Sep 10, 2019

Connecting to Azure SQL database using access token via pre-connect connection attributes

Is it possible to set pre-connect attributes on a connection using r odbc? I want to use Active Directory access token to connect to Azure SQL Data Warehouse. Azure docs specifiy that the token needs to be given to the driver as a pre-connect attribute SQL_COPT_SS_ACCESS_TOKEN (https://docs.microsoft.c

implyr
ianmcook
ianmcook commented Jul 8, 2017

A useR!2017 attendee asked after the implyr talk about what Impala's limitations for using DISTINCT were. Older versions of Impala (before version 2.0) allowed only one DISTINCT clause per query. Newer versions have removed this limitation. But the current version of Impala does have the limitation that you cannot use DISTINCT in more than one aggrega

BY-jk
BY-jk commented Jul 24, 2017

http://docs.sqlalchemy.org/en/latest/changelog/migration_12.html#support-for-sql-comments-on-table-column-includes-ddl-reflection

This should be relatively straightforward as the EXASOL dialect mirrors the ORACLE dialect. Comments on different DB objects are supported and can be set inline
CREATE TABLE foo ( ... ) COMMENT is 'a comment';
or as individual SQL
`COMMENT ON TABLE foo IS 'a ta

Improve this page

Add a description, image, and links to the odbc topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the odbc topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.