Changeset 64-bit,13 for 64-bit/src/odbc/odbc-functions.lisp
- Timestamp:
- 02/04/2008 12:59:54 AM (18 years ago)
- branch-nick:
- test
- parents:
Rev Tree Chgset 12 @64-bit,12 [64-bit,12] 2.1.1 @64-bit,2.1.1 [64-bit,2.1.1] - revision id:
- dsowen@fugue88.ws-20080204005954-s1vx8hf9i7l2iqqe
- File:
-
- 1 edited
-
64-bit/src/odbc/odbc-functions.lisp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
64-bit/src/odbc/odbc-functions.lisp
r6 r13 261 261 ; col-nr = :bookmark retrieves a bookmark. 262 262 (defun %bind-column (hstmt column-nr c-type data-ptr precision out-len-ptr) 263 (declare ( (integer 0) column-nr))263 (declare (type (integer 0) column-nr)) 264 264 (with-error-handling 265 265 (:hstmt hstmt) … … 272 272 sql-type precision scale data-ptr 273 273 max-value out-len-ptr) 274 (declare ( (integer 0) parameter-nr))274 (declare (type (integer 0) parameter-nr)) 275 275 (with-error-handling 276 276 (:hstmt hstmt) … … 499 499 ;; Column counting is 1-based 500 500 (defun %describe-column (hstmt column-nr) 501 (declare ( (integer 1) column-nr))501 (declare (type (integer 1) column-nr)) 502 502 (with-temporary-allocations 503 503 ((column-name-ptr (alloc-chars 256)) … … 593 593 ; column-nr is zero-based 594 594 (defun %sql-get-data (hstmt column-nr c-type data-ptr precision out-len-ptr) 595 (declare ( (integer 0) column-nr))595 (declare (type (integer 0) column-nr)) 596 596 (with-error-handling 597 597 (:hstmt hstmt :print-info nil) … … 600 600 601 601 (defun %sql-get-data-raw (hstmt position c-type data-ptr buffer-length ind-ptr) 602 (declare ( (integer 0) position))602 (declare (type (integer 0) position)) 603 603 (SQLGetData hstmt (1+ position) 604 604 c-type data-ptr buffer-length ind-ptr))
Note: See TracChangeset
for help on using the changeset viewer.
