X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-odbc%2Fodbc-api.lisp;h=208dafa7536190665644a5709ad9fb99f04eb81b;hp=fe9d6f80a73ef13350f4e44bce9a0eda33c86a39;hb=01ea3765ca1164c3e122eec84d6cf3e25e351c57;hpb=5699785aefac188f296f3877d3c12324b9f541b9 diff --git a/db-odbc/odbc-api.lisp b/db-odbc/odbc-api.lisp index fe9d6f8..208dafa 100644 --- a/db-odbc/odbc-api.lisp +++ b/db-odbc/odbc-api.lisp @@ -48,21 +48,6 @@ May be locally bound to something else if a certain type is necessary.") (char-code (char ,string i)))) (setf (deref-array char-ptr '(:array :byte) ,size) 0))))) -(defun %cstring-into-vector (ptr vector offset size-in-bytes) - (dotimes (i size-in-bytes) - (setf (schar vector offset) - (ensure-char-character - ;; this is MUCH faster than (sb-alien:deref ptr i) even though - ;; sb-alien:deref makes more sense. I snagged this by looking at - ;; cffi which we had used previously without this bug - #+(and sbcl (not cffi)) - (sb-sys:sap-ref-8 (sb-alien:alien-sap ptr) i) - #-(and sbcl (not cffi)) - (deref-array ptr '(:array :unsigned-char) i) - )) - (incf offset)) - offset) - (defmacro with-allocate-foreign-string ((var len) &body body) "Safely does uffi:allocate-foreign-string-- making sure we do the uffi:free-foreign-object" `(let ((,var))