X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-odbc%2Fodbc-ff-interface.lisp;h=7b780233db545f6a9abbe95054e7cd25fa00b43a;hp=ba3362e9b3e2c49690ad570f30605ece7bdc5a52;hb=570798eb781157ad988bd527232bb88d51b103d7;hpb=0ca466f17513149eec6259f4747f5ec891d5db68 diff --git a/db-odbc/odbc-ff-interface.lisp b/db-odbc/odbc-ff-interface.lisp index ba3362e..7b78023 100644 --- a/db-odbc/odbc-ff-interface.lisp +++ b/db-odbc/odbc-ff-interface.lisp @@ -23,7 +23,15 @@ (def-foreign-type string-ptr '(* :unsigned-char)) (def-type long-ptr-type '(* #.$ODBC-LONG-TYPE)) +;; odbc v3 +(def-function "SQLAllocHandle" + ((handle-type :short) + (input-handle sql-handle) + (*phenv sql-handle-ptr)) + :module "odbc" + :returning :short) +;; deprecated (def-function "SQLAllocEnv" ((*phenv sql-handle-ptr) ; HENV FAR *phenv ) @@ -356,6 +364,15 @@ :module "odbc" :returning :short) +(def-function "SQLGetEnvAttr" + ((henv sql-handle) ; HENV henv + (attr :int) + (*value :pointer-void) + (szLength :int) + (string-length-ptr (* :int))) + :module "odbc" + :returning :short) + (def-function "SQLTables" ((hstmt :pointer-void) (catalog-name :pointer-void)