From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Sat, 27 May 2006 23:37:51 +0100 From: mattmobile@proweb.co.uk To: inferno-list@vitanuova.com Message-Id: <20060527233751.fd701939.mattmobile@proweb.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: 9fans@cse.psu.edu Subject: [9fans] pg limbo module Topicbox-Message-UUID: 56f4625a-ead1-11e9-9d60-3106f5b1d025 Hi, I've been working on a Limbo postgresql client. I've got it to the point where I can run queries, in simple (where you supply escaped SQL) and extended queries where you provide parameterized queries requiring no escaping that are "prepared". You can then run these queries over and over with new values bound to the parameters. I've just realised that I've not done the Copy part of protocol, oh well. http://www.maht0x0r.net/inferno/ The only authentication supported is plain text. I tried working with md5 but it does a double hash that I've not quite managed to work out. This is my first proper module so excuse any rubbish =) One question I have is how does one avoid setting a PATH for released code, i.e. pg.m has : PATH: con "/usr/maht/pg/pg.dis"; in it, but I don't know what to do to take out this dependency. Hope someone finds it useful. Matt