r8984: initial odbc files
[clsql.git] / db-odbc / odbc-api.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:    odbc-api.lisp
6 ;;;; Purpose: Low-level Odbc interface using UFFI
7 ;;;; Author:  Kevin M. Rosenberg based on 
8 ;;;; Created: April 2004
9 ;;;;
10 ;;;; $Id: odbc-api.lisp 8811 2004-04-02 20:45:48Z kevin $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2004 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (in-package #:odbc)
20
21 (defun connect (&key user password data-source-name)
22   (warn "Not implemented.")
23   nil)
24
25 (defun disconnect (conn)
26   (warn "Not implemented."))  
27
28
29 (defun query (expr &key db result-types row-count column-names)
30   (warn "Not implemented."))
31
32 (defun execute (expr conn)
33   (warn "Not implemented."))
34
35 (defun close-query (result-set)
36   (warn "Not implemented."))
37
38 (defun fetch-row (result-set error-eof eof-value)
39   (warn "Not implemented."))