Changeset combined,9 for combined
- Timestamp:
- 08/06/2008 03:19:47 AM (18 years ago)
- branch-nick:
- combined
- parents:
Rev Tree Chgset 8 @combined,8 [combined,8] 2.2.7 @combined,2.2.7 [combined,2.2.7] - revision id:
- dsowen@fugue88.ws-20080806031947-zpi6unkpsh25hutd
- Location:
- combined
- Files:
-
- 2 added
- 3 edited
-
src/odbc/error-base.lisp (added)
-
src/odbc/error-defs.lisp (added)
-
plain-odbc.asd (modified) (1 diff)
-
src/odbc/odbc-functions.lisp (modified) (2 diffs)
-
src/odbc/plain-odbc-package.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
combined/plain-odbc.asd
r5 r2.2.5 11 11 (:file "ffi-support") 12 12 (:file "odbc-ff-interface") 13 (:file "error-base") 14 (:file "error-defs") 13 15 (:file "odbc-functions") 14 16 (:file "parameter") -
combined/src/odbc/odbc-functions.lisp
r2.1.14 r9 88 88 (declare (ignore msg-length)) 89 89 (values result-code 90 (make-condition91 90 (if (eql result-code #.$SQL_SUCCESS_WITH_INFO) 92 'sql-warning 93 'sql-error) 94 :error-message error-message 95 :sql-state sql-state 96 :error-code error-code)))) 91 (make-condition 92 'sql-warning 93 :error-message error-message 94 :sql-state sql-state 95 :error-code error-code) 96 (make-error sql-state error-message))))) 97 97 ; this can happen, using a wrong handle 98 98 (#.$SQL_INVALID_HANDLE … … 109 109 (otherwise (error "unknown result of odbc execution: ~A" result-code)) 110 110 )) 111 111 112 112 113 -
combined/src/odbc/plain-odbc-package.lisp
r5 r2.2.5 14 14 ; #+mcl "CCL" #+cormanlisp "WIN32" "CFFI") 15 15 (:export 16 "PRINT-ODBC-ERROR" 17 "ODBC-ERROR" 18 "ERROR-MESSAGE" 19 "ERROR-CODE" 20 16 21 "EXEC-SQL" 17 22 "EXEC-QUERY"
Note: See TracChangeset
for help on using the changeset viewer.
