Win32 API 日本語リファレンス
ホームSystem.Search › SQLSetConnectAttrW

SQLSetConnectAttrW

関数
接続属性に値を設定する(Unicode)。
DLLODBC32.dll文字セットUnicode (-W)呼出規約winapi

シグネチャ

// ODBC32.dll  (Unicode / -W)
#include <windows.h>

SHORT SQLSetConnectAttrW(
    void* hdbc,
    INT fAttribute,
    void* rgbValue,   // optional
    INT cbValue
);

パラメーター

名前方向説明
hdbcvoid*inout属性を設定する接続ハンドル。
fAttributeINTin設定する接続属性のID。SQL_ATTR_*定数を指定する。
rgbValuevoid*inoptional設定する属性値。整数または文字列(Unicode)バッファへのポインタ。
cbValueINTinrgbValueが文字列の場合のバイト長。整数値ならSQL_IS_INTEGER等。

戻り値の型: SHORT

各言語での呼び出し定義

// ODBC32.dll  (Unicode / -W)
#include <windows.h>

SHORT SQLSetConnectAttrW(
    void* hdbc,
    INT fAttribute,
    void* rgbValue,   // optional
    INT cbValue
);
[DllImport("ODBC32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern short SQLSetConnectAttrW(
    IntPtr hdbc,   // void* in/out
    int fAttribute,   // INT
    IntPtr rgbValue,   // void* optional
    int cbValue   // INT
);
<DllImport("ODBC32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function SQLSetConnectAttrW(
    hdbc As IntPtr,   ' void* in/out
    fAttribute As Integer,   ' INT
    rgbValue As IntPtr,   ' void* optional
    cbValue As Integer   ' INT
) As Short
End Function
' hdbc : void* in/out
' fAttribute : INT
' rgbValue : void* optional
' cbValue : INT
Declare PtrSafe Function SQLSetConnectAttrW Lib "odbc32" ( _
    ByVal hdbc As LongPtr, _
    ByVal fAttribute As Long, _
    ByVal rgbValue As LongPtr, _
    ByVal cbValue As Long) As Integer
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

SQLSetConnectAttrW = ctypes.windll.odbc32.SQLSetConnectAttrW
SQLSetConnectAttrW.restype = ctypes.c_short
SQLSetConnectAttrW.argtypes = [
    ctypes.POINTER(None),  # hdbc : void* in/out
    ctypes.c_int,  # fAttribute : INT
    ctypes.POINTER(None),  # rgbValue : void* optional
    ctypes.c_int,  # cbValue : INT
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('ODBC32.dll')
SQLSetConnectAttrW = Fiddle::Function.new(
  lib['SQLSetConnectAttrW'],
  [
    Fiddle::TYPE_VOIDP,  # hdbc : void* in/out
    Fiddle::TYPE_INT,  # fAttribute : INT
    Fiddle::TYPE_VOIDP,  # rgbValue : void* optional
    Fiddle::TYPE_INT,  # cbValue : INT
  ],
  Fiddle::TYPE_SHORT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"
#[link(name = "odbc32")]
extern "system" {
    fn SQLSetConnectAttrW(
        hdbc: *mut (),  // void* in/out
        fAttribute: i32,  // INT
        rgbValue: *mut (),  // void* optional
        cbValue: i32  // INT
    ) -> i16;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("ODBC32.dll", CharSet = CharSet.Unicode)]
public static extern short SQLSetConnectAttrW(IntPtr hdbc, int fAttribute, IntPtr rgbValue, int cbValue);
"@
$api = Add-Type -MemberDefinition $sig -Name 'ODBC32_SQLSetConnectAttrW' -Namespace Win32 -PassThru
# $api::SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
#uselib "ODBC32.dll"
#func global SQLSetConnectAttrW "SQLSetConnectAttrW" wptr, wptr, wptr, wptr
; SQLSetConnectAttrW hdbc, fAttribute, rgbValue, cbValue   ; 戻り値は stat
; hdbc : void* in/out -> "wptr"
; fAttribute : INT -> "wptr"
; rgbValue : void* optional -> "wptr"
; cbValue : INT -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "ODBC32.dll"
#cfunc global SQLSetConnectAttrW "SQLSetConnectAttrW" sptr, int, sptr, int
; res = SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
; hdbc : void* in/out -> "sptr"
; fAttribute : INT -> "int"
; rgbValue : void* optional -> "sptr"
; cbValue : INT -> "int"
; SHORT SQLSetConnectAttrW(void* hdbc, INT fAttribute, void* rgbValue, INT cbValue)
#uselib "ODBC32.dll"
#cfunc global SQLSetConnectAttrW "SQLSetConnectAttrW" intptr, int, intptr, int
; res = SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
; hdbc : void* in/out -> "intptr"
; fAttribute : INT -> "int"
; rgbValue : void* optional -> "intptr"
; cbValue : INT -> "int"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	odbc32 = windows.NewLazySystemDLL("ODBC32.dll")
	procSQLSetConnectAttrW = odbc32.NewProc("SQLSetConnectAttrW")
)

// hdbc (void* in/out), fAttribute (INT), rgbValue (void* optional), cbValue (INT)
r1, _, err := procSQLSetConnectAttrW.Call(
	uintptr(hdbc),
	uintptr(fAttribute),
	uintptr(rgbValue),
	uintptr(cbValue),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // SHORT
function SQLSetConnectAttrW(
  hdbc: Pointer;   // void* in/out
  fAttribute: Integer;   // INT
  rgbValue: Pointer;   // void* optional
  cbValue: Integer   // INT
): Smallint; stdcall;
  external 'ODBC32.dll' name 'SQLSetConnectAttrW';
result := DllCall("ODBC32\SQLSetConnectAttrW"
    , "Ptr", hdbc   ; void* in/out
    , "Int", fAttribute   ; INT
    , "Ptr", rgbValue   ; void* optional
    , "Int", cbValue   ; INT
    , "Short")   ; return: SHORT
●SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue) = DLL("ODBC32.dll", "int SQLSetConnectAttrW(void*, int, void*, int)")
# 呼び出し: SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
# hdbc : void* in/out -> "void*"
# fAttribute : INT -> "int"
# rgbValue : void* optional -> "void*"
# cbValue : INT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。
const std = @import("std");

extern "odbc32" fn SQLSetConnectAttrW(
    hdbc: ?*anyopaque, // void* in/out
    fAttribute: i32, // INT
    rgbValue: ?*anyopaque, // void* optional
    cbValue: i32 // INT
) callconv(std.os.windows.WINAPI) i16;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。
proc SQLSetConnectAttrW(
    hdbc: pointer,  # void* in/out
    fAttribute: int32,  # INT
    rgbValue: pointer,  # void* optional
    cbValue: int32  # INT
): int16 {.importc: "SQLSetConnectAttrW", stdcall, dynlib: "ODBC32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。
pragma(lib, "odbc32");
extern(Windows)
short SQLSetConnectAttrW(
    void* hdbc,   // void* in/out
    int fAttribute,   // INT
    void* rgbValue,   // void* optional
    int cbValue   // INT
);
ccall((:SQLSetConnectAttrW, "ODBC32.dll"), stdcall, Int16,
      (Ptr{Cvoid}, Int32, Ptr{Cvoid}, Int32),
      hdbc, fAttribute, rgbValue, cbValue)
# hdbc : void* in/out -> Ptr{Cvoid}
# fAttribute : INT -> Int32
# rgbValue : void* optional -> Ptr{Cvoid}
# cbValue : INT -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。
local ffi = require("ffi")
ffi.cdef[[
int16_t SQLSetConnectAttrW(
    void* hdbc,
    int32_t fAttribute,
    void* rgbValue,
    int32_t cbValue);
]]
local odbc32 = ffi.load("odbc32")
-- odbc32.SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
-- hdbc : void* in/out
-- fAttribute : INT
-- rgbValue : void* optional
-- cbValue : INT
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
-- Unicode(-W): uint16_t* には UTF-16LE のバッファ(ffi.new("uint16_t[?]", ...))を渡す。
const koffi = require('koffi');
const lib = koffi.load('ODBC32.dll');
const SQLSetConnectAttrW = lib.func('__stdcall', 'SQLSetConnectAttrW', 'int16_t', ['void *', 'int32_t', 'void *', 'int32_t']);
// SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
// hdbc : void* in/out -> 'void *'
// fAttribute : INT -> 'int32_t'
// rgbValue : void* optional -> 'void *'
// cbValue : INT -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("ODBC32.dll", {
  SQLSetConnectAttrW: { parameters: ["pointer", "i32", "pointer", "i32"], result: "i16" },
});
// lib.symbols.SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue)
// hdbc : void* in/out -> "pointer"
// fAttribute : INT -> "i32"
// rgbValue : void* optional -> "pointer"
// cbValue : INT -> "i32"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int16_t SQLSetConnectAttrW(
    void* hdbc,
    int32_t fAttribute,
    void* rgbValue,
    int32_t cbValue);
C, "ODBC32.dll");
// $ffi->SQLSetConnectAttrW(hdbc, fAttribute, rgbValue, cbValue);
// hdbc : void* in/out
// fAttribute : INT
// rgbValue : void* optional
// cbValue : INT
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface Odbc32 extends StdCallLibrary {
    Odbc32 INSTANCE = Native.load("odbc32", Odbc32.class, W32APIOptions.UNICODE_OPTIONS);
    short SQLSetConnectAttrW(
        Pointer hdbc,   // void* in/out
        int fAttribute,   // INT
        Pointer rgbValue,   // void* optional
        int cbValue   // INT
    );
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。
@[Link("odbc32")]
lib LibODBC32
  fun SQLSetConnectAttrW = SQLSetConnectAttrW(
    hdbc : Void*,   # void* in/out
    fAttribute : Int32,   # INT
    rgbValue : Void*,   # void* optional
    cbValue : Int32   # INT
  ) : Int16
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef SQLSetConnectAttrWNative = Int16 Function(Pointer<Void>, Int32, Pointer<Void>, Int32);
typedef SQLSetConnectAttrWDart = int Function(Pointer<Void>, int, Pointer<Void>, int);
final SQLSetConnectAttrW = DynamicLibrary.open('ODBC32.dll')
    .lookupFunction<SQLSetConnectAttrWNative, SQLSetConnectAttrWDart>('SQLSetConnectAttrW');
// hdbc : void* in/out -> Pointer<Void>
// fAttribute : INT -> Int32
// rgbValue : void* optional -> Pointer<Void>
// cbValue : INT -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function SQLSetConnectAttrW(
  hdbc: Pointer;   // void* in/out
  fAttribute: Integer;   // INT
  rgbValue: Pointer;   // void* optional
  cbValue: Integer   // INT
): Smallint; stdcall;
  external 'ODBC32.dll' name 'SQLSetConnectAttrW';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "SQLSetConnectAttrW"
  c_SQLSetConnectAttrW :: Ptr () -> Int32 -> Ptr () -> Int32 -> IO Int16
-- hdbc : void* in/out -> Ptr ()
-- fAttribute : INT -> Int32
-- rgbValue : void* optional -> Ptr ()
-- cbValue : INT -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let sqlsetconnectattrw =
  foreign "SQLSetConnectAttrW"
    ((ptr void) @-> int32_t @-> (ptr void) @-> int32_t @-> returning int16_t)
(* hdbc : void* in/out -> (ptr void) *)
(* fAttribute : INT -> int32_t *)
(* rgbValue : void* optional -> (ptr void) *)
(* cbValue : INT -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library odbc32 (t "ODBC32.dll"))
(cffi:use-foreign-library odbc32)

(cffi:defcfun ("SQLSetConnectAttrW" sqlset-connect-attr-w :convention :stdcall) :int16
  (hdbc :pointer)   ; void* in/out
  (f-attribute :int32)   ; INT
  (rgb-value :pointer)   ; void* optional
  (cb-value :int32))   ; INT
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $SQLSetConnectAttrW = Win32::API::More->new('ODBC32',
    'short SQLSetConnectAttrW(LPVOID hdbc, int fAttribute, LPVOID rgbValue, int cbValue)');
# my $ret = $SQLSetConnectAttrW->Call($hdbc, $fAttribute, $rgbValue, $cbValue);
# hdbc : void* in/out -> LPVOID
# fAttribute : INT -> int
# rgbValue : void* optional -> LPVOID
# cbValue : INT -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。

関連項目

文字セット違い