From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Linas Vepstas Newsgroups: gmane.lisp.guile.user Subject: Re: Guile module for sqlite Date: Sat, 15 May 2010 15:58:53 -0500 Message-ID: References: <1273955051.30625.6.camel@romel-compaq> Reply-To: linasvepstas@gmail.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1273957170 14475 80.91.229.12 (15 May 2010 20:59:30 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 15 May 2010 20:59:30 +0000 (UTC) Cc: guile-user@gnu.org To: "Romel R. Sandoval Palomo" Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sat May 15 22:59:29 2010 connect(): No such file or directory Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ODOSG-00016V-48 for guile-user@m.gmane.org; Sat, 15 May 2010 22:59:28 +0200 Original-Received: from localhost ([127.0.0.1]:56469 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ODOSF-0000Yj-Cp for guile-user@m.gmane.org; Sat, 15 May 2010 16:59:27 -0400 Original-Received: from [140.186.70.92] (port=35900 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ODOS5-0000UO-DJ for guile-user@gnu.org; Sat, 15 May 2010 16:59:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1ODOS2-0008FQ-BL for guile-user@gnu.org; Sat, 15 May 2010 16:59:16 -0400 Original-Received: from mail-gy0-f169.google.com ([209.85.160.169]:55812) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1ODOS2-0008FF-8k for guile-user@gnu.org; Sat, 15 May 2010 16:59:14 -0400 Original-Received: by gyg4 with SMTP id 4so2525024gyg.0 for ; Sat, 15 May 2010 13:59:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:reply-to :in-reply-to:references:from:date:message-id:subject:to:cc :content-type; bh=x/Db1sIopwZRWV361cEXsDuYJTp952wihzgnMdNsyN0=; b=PnqNLJylqZXe5FUHQxI7pn8C9H9SITeezgLhafKriyiNgcsk9DRpZ569Pe2HvIHD1+ hmYdMgxwkxQ803TH2YPTZT311KbV+XMp7LPy2EJVLN5lVFqe6fvENFG/EVfsfApeqGOs Q5bGufGQoGxn0glBXngHbQ9ihwz556mi4F8dw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; b=QA0/OKjIciU8vVYiXvzsz1sHRiig1jdr+I7Q4eOFyFzU4fFZPydzw+7pa6bYEgkXIc jj5fHSA748uGwKLyIQrUysk1sj8SR3brNGqxtJ/YovVS+igCk6YXL7n+0VKOsusGlXyN lZ1AEotnLrUXCO42FHzvx2QdvszGonAbvv1r0= Original-Received: by 10.101.132.40 with SMTP id j40mr3693062ann.67.1273957153163; Sat, 15 May 2010 13:59:13 -0700 (PDT) Original-Received: by 10.100.141.8 with HTTP; Sat, 15 May 2010 13:58:53 -0700 (PDT) In-Reply-To: <1273955051.30625.6.camel@romel-compaq> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7780 Archived-At: On 15 May 2010 15:24, Romel R. Sandoval Palomo wrote: > Hello. > > I'm starting to write a guile module for sqlite3 API. I'm progressing > slowly because I'm new in guile. > > I send this mail just to know if there is anybody working on the same > task. So we don't duplicate work. > > Also I have a doubt if is correct to call the module (db sqlite) so it > will be loaded with: > > (use-modules (db sqlite)) An alternative would be to write a backend for guile-dbi, that way, one can use the same api for any sql db See http://home.gna.org/guile-dbi/ Its certainly easier to write the backend for guile-dbi, than it would be to create a whole api from scratch. --linas