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

SQLCloseCursor

関数
ステートメント上で開いているカーソルを閉じる。
DLLODBC32.dll呼出規約winapi

シグネチャ

// ODBC32.dll
#include <windows.h>

SHORT SQLCloseCursor(
    void* StatementHandle
);

パラメーター

名前方向説明
StatementHandlevoid*inoutカーソルを閉じる対象のステートメントハンドル(HSTMT)。

戻り値の型: SHORT

各言語での呼び出し定義

// ODBC32.dll
#include <windows.h>

SHORT SQLCloseCursor(
    void* StatementHandle
);
[DllImport("ODBC32.dll", ExactSpelling = true)]
static extern short SQLCloseCursor(
    IntPtr StatementHandle   // void* in/out
);
<DllImport("ODBC32.dll", ExactSpelling:=True)>
Public Shared Function SQLCloseCursor(
    StatementHandle As IntPtr   ' void* in/out
) As Short
End Function
' StatementHandle : void* in/out
Declare PtrSafe Function SQLCloseCursor Lib "odbc32" ( _
    ByVal StatementHandle As LongPtr) As Integer
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

SQLCloseCursor = ctypes.windll.odbc32.SQLCloseCursor
SQLCloseCursor.restype = ctypes.c_short
SQLCloseCursor.argtypes = [
    ctypes.POINTER(None),  # StatementHandle : void* in/out
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('ODBC32.dll')
SQLCloseCursor = Fiddle::Function.new(
  lib['SQLCloseCursor'],
  [
    Fiddle::TYPE_VOIDP,  # StatementHandle : void* in/out
  ],
  Fiddle::TYPE_SHORT)
#[link(name = "odbc32")]
extern "system" {
    fn SQLCloseCursor(
        StatementHandle: *mut ()  // void* in/out
    ) -> i16;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("ODBC32.dll")]
public static extern short SQLCloseCursor(IntPtr StatementHandle);
"@
$api = Add-Type -MemberDefinition $sig -Name 'ODBC32_SQLCloseCursor' -Namespace Win32 -PassThru
# $api::SQLCloseCursor(StatementHandle)
#uselib "ODBC32.dll"
#func global SQLCloseCursor "SQLCloseCursor" sptr
; SQLCloseCursor StatementHandle   ; 戻り値は stat
; StatementHandle : void* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "ODBC32.dll"
#cfunc global SQLCloseCursor "SQLCloseCursor" sptr
; res = SQLCloseCursor(StatementHandle)
; StatementHandle : void* in/out -> "sptr"
; SHORT SQLCloseCursor(void* StatementHandle)
#uselib "ODBC32.dll"
#cfunc global SQLCloseCursor "SQLCloseCursor" intptr
; res = SQLCloseCursor(StatementHandle)
; StatementHandle : void* in/out -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	odbc32 = windows.NewLazySystemDLL("ODBC32.dll")
	procSQLCloseCursor = odbc32.NewProc("SQLCloseCursor")
)

// StatementHandle (void* in/out)
r1, _, err := procSQLCloseCursor.Call(
	uintptr(StatementHandle),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // SHORT
function SQLCloseCursor(
  StatementHandle: Pointer   // void* in/out
): Smallint; stdcall;
  external 'ODBC32.dll' name 'SQLCloseCursor';
result := DllCall("ODBC32\SQLCloseCursor"
    , "Ptr", StatementHandle   ; void* in/out
    , "Short")   ; return: SHORT
●SQLCloseCursor(StatementHandle) = DLL("ODBC32.dll", "int SQLCloseCursor(void*)")
# 呼び出し: SQLCloseCursor(StatementHandle)
# StatementHandle : void* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "odbc32" fn SQLCloseCursor(
    StatementHandle: ?*anyopaque // void* in/out
) callconv(std.os.windows.WINAPI) i16;
proc SQLCloseCursor(
    StatementHandle: pointer  # void* in/out
): int16 {.importc: "SQLCloseCursor", stdcall, dynlib: "ODBC32.dll".}
pragma(lib, "odbc32");
extern(Windows)
short SQLCloseCursor(
    void* StatementHandle   // void* in/out
);
ccall((:SQLCloseCursor, "ODBC32.dll"), stdcall, Int16,
      (Ptr{Cvoid},),
      StatementHandle)
# StatementHandle : void* in/out -> Ptr{Cvoid}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int16_t SQLCloseCursor(
    void* StatementHandle);
]]
local odbc32 = ffi.load("odbc32")
-- odbc32.SQLCloseCursor(StatementHandle)
-- StatementHandle : void* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('ODBC32.dll');
const SQLCloseCursor = lib.func('__stdcall', 'SQLCloseCursor', 'int16_t', ['void *']);
// SQLCloseCursor(StatementHandle)
// StatementHandle : void* in/out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("ODBC32.dll", {
  SQLCloseCursor: { parameters: ["pointer"], result: "i16" },
});
// lib.symbols.SQLCloseCursor(StatementHandle)
// StatementHandle : void* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int16_t SQLCloseCursor(
    void* StatementHandle);
C, "ODBC32.dll");
// $ffi->SQLCloseCursor(StatementHandle);
// StatementHandle : void* in/out
// 構造体/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);
    short SQLCloseCursor(
        Pointer StatementHandle   // void* in/out
    );
}
@[Link("odbc32")]
lib LibODBC32
  fun SQLCloseCursor = SQLCloseCursor(
    StatementHandle : Void*   # void* in/out
  ) : Int16
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef SQLCloseCursorNative = Int16 Function(Pointer<Void>);
typedef SQLCloseCursorDart = int Function(Pointer<Void>);
final SQLCloseCursor = DynamicLibrary.open('ODBC32.dll')
    .lookupFunction<SQLCloseCursorNative, SQLCloseCursorDart>('SQLCloseCursor');
// StatementHandle : void* in/out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function SQLCloseCursor(
  StatementHandle: Pointer   // void* in/out
): Smallint; stdcall;
  external 'ODBC32.dll' name 'SQLCloseCursor';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "SQLCloseCursor"
  c_SQLCloseCursor :: Ptr () -> IO Int16
-- StatementHandle : void* in/out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

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

(cffi:defcfun ("SQLCloseCursor" sqlclose-cursor :convention :stdcall) :int16
  (statement-handle :pointer))   ; void* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $SQLCloseCursor = Win32::API::More->new('ODBC32',
    'short SQLCloseCursor(LPVOID StatementHandle)');
# my $ret = $SQLCloseCursor->Call($StatementHandle);
# StatementHandle : void* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。