aboutsummaryrefslogtreecommitdiff
path: root/src/guile-sql.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/guile-sql.h')
-rw-r--r--src/guile-sql.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/guile-sql.h b/src/guile-sql.h
index 5203123..154b322 100644
--- a/src/guile-sql.h
+++ b/src/guile-sql.h
@@ -1,19 +1,18 @@
/* This file is part of guile-sql.
- Copyright (C) 2002 Sergey Poznyakoff
+ Copyright (C) 2002, 2007 Sergey Poznyakoff
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation; either version 3 of the License, or (at your
+ option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
+ You should have received a copy of the GNU General Public License along
+ with this program. If not, see <http://www.gnu.org/licenses/>. */
#include <sys/socket.h>
#include <netinet/in.h>
@@ -41,10 +40,11 @@ struct sql_iface {
char *name;
SCM (*mark) (struct sql_connect *);
scm_sizet (*free) (struct sql_connect *);
- SCM (*connect) (char *hostname, int port,
- char *dbname, char *user, char *pass, const char *why);
+ SCM (*connect) (const char *hostname, int port,
+ const char *dbname, const char *user,
+ const char *pass, const char *why);
void (*close) (struct sql_connect *);
- SCM (*query) (struct sql_connect *, char *query);
+ SCM (*query) (struct sql_connect *, const char *query);
};
extern struct sql_iface sql_iftab[];

Return to:

Send suggestions and report system problems to the System administrator.