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: PATCH [0/12]: Guile-DBI and Guile-DBD-Postgres Date: Fri, 19 Sep 2008 08:45:45 -0500 Message-ID: <3ae3aa420809190645o2fe2b746id80f53c5cb123e5b@mail.gmail.com> Reply-To: linasvepstas@gmail.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1221832009 30380 80.91.229.12 (19 Sep 2008 13:46:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 19 Sep 2008 13:46:49 +0000 (UTC) Cc: Guile User Mailing List To: "Maurizio Boriani" Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Sep 19 15:47:41 2008 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.50) id 1KggK1-0003do-Lx for guile-user@m.gmane.org; Fri, 19 Sep 2008 15:46:57 +0200 Original-Received: from localhost ([127.0.0.1]:55504 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KggIz-0003dO-To for guile-user@m.gmane.org; Fri, 19 Sep 2008 09:45:53 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KggIu-0003dA-Hc for guile-user@gnu.org; Fri, 19 Sep 2008 09:45:48 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KggIs-0003ck-An for guile-user@gnu.org; Fri, 19 Sep 2008 09:45:47 -0400 Original-Received: from [199.232.76.173] (port=48354 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KggIs-0003cg-51 for guile-user@gnu.org; Fri, 19 Sep 2008 09:45:46 -0400 Original-Received: from mail-gx0-f12.google.com ([209.85.217.12]:34608) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KggIs-00060Z-BI for guile-user@gnu.org; Fri, 19 Sep 2008 09:45:46 -0400 Original-Received: by gxk5 with SMTP id 5so680733gxk.18 for ; Fri, 19 Sep 2008 06:45:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=vinq+cVX/6RmqqgT8SnAIQZ1KnKs8dW0lZPEVOEcxA8=; b=jGkIuC0PLVzmLwZaIw+IZ16Eckav/+CMv4Zv7tB7thaGnjb3aUpeX1065SkSCRIZc0 wd6g/Yb0S4g8X1BBVn7eJXszq14WHcY5EEqA1/w1r9cnsw7PRj701uVnSNpTIQdrylCi W0DkRANe9wzhvKcunhJ+3tIOj56CZmstESg1E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:mime-version :content-type:content-transfer-encoding:content-disposition; b=rGoJjGyPcV3LH77eEO7EInDOAbk1P/SDTx2VQGaeNp6UMYdxbNVd/mdgprLZsX1f6C ylXxHJ736vEk7iL94N35LrQOB5zXVxnA1Z4BTlbKjkCO2gH5ATpDye6Da7ygZRRha/v0 h1RACGgx7DHPIzbsqr0yBagYZFdEkrNDEZjWM= Original-Received: by 10.100.249.10 with SMTP id w10mr68574anh.156.1221831945479; Fri, 19 Sep 2008 06:45:45 -0700 (PDT) Original-Received: by 10.100.207.16 with HTTP; Fri, 19 Sep 2008 06:45:45 -0700 (PDT) Content-Disposition: inline X-detected-operating-system: by monty-python.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:6783 Archived-At: Hi, Below follows a series of 12 patches against Guile-DBI and DBD-Postgres. Guile DBI is a wrapper for accessing SQL databases. https://gna.org/projects/guile-dbi/ I'm posting here -- although there used to be guile-dbi-user and guile-dbi-devel mailing lists, these had no subscribers, and quickly filled with spam, as evidenced by their mail archives. I've applied to get an account on gna.org to post the patches there, but its been a week, and my account application still hasn't gone through :-( It also appears that the original maintainer, Maurizio Boriani, is not responding to email. Bummer. The patches fix a variety of different crashes and hangs, and also fix problems with missing data (e.g. for a query with N records, only N-1 were being returned -- bad news when N=1) --linas