r2070: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 25 May 2002 15:57:28 +0000 (15:57 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 25 May 2002 15:57:28 +0000 (15:57 +0000)
interfaces/mysql/mysql-api.cl
interfaces/mysql/mysql-sql.cl

index 14446b9f0c292b9bb56af83186a74c99069b2e73..ab88a7bbbcf985be74b7d5c52d63490c7e38cea3 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: mysql-api.cl,v 1.3 2002/03/27 08:09:25 kevin Exp $
+;;;; $Id: mysql-api.cl,v 1.4 2002/05/25 15:57:28 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
   :module "mysql"
   :returning (* mysql-mysql))
 
-(declaim (inline mysql-real-connect))
+;; Need to comment this out for LW 4.2.6
+;; ? bug in LW version
+;;(declaim (inline mysql-real-connect))
 (uffi:def-function "mysql_real_connect"
-  ((mysql (* mysql-mysql))
-   (host :cstring)
-   (user :cstring)
-   (passwd :cstring)
-   (db :cstring)
-   (port :unsigned-int)
-   (unix-socket :cstring)
-   (clientflag :unsigned-int))
+    ((mysql (* mysql-mysql))
+     (host :cstring)
+     (user :cstring)
+     (passwd :cstring)
+     (db :cstring)
+     (port :unsigned-int)
+     (unix-socket :cstring)
+     (clientflag :unsigned-int))
   :module "mysql"
   :returning (* mysql-mysql))
 
index ca8225b33660f5dd1cb436367c235bff4ba02da7..d608d8be3408f97d8ced5d29b79614afad2f845f 100644 (file)
@@ -8,7 +8,7 @@
 ;;;;                Original code by Pierre R. Mai 
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: mysql-sql.cl,v 1.20 2002/05/14 16:29:53 kevin Exp $
+;;;; $Id: mysql-sql.cl,v 1.21 2002/05/25 15:57:28 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai
@@ -99,7 +99,6 @@
     (declare (ignore password))
     (concatenate 'string host "/" db "/" user)))
 
-
 (defmethod database-connect (connection-spec (database-type (eql :mysql)))
   (check-connection-spec connection-spec database-type (host db user password))
   (destructuring-bind (host db user password) connection-spec