From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <838f0f5ea30688aae8174b6c42844ef9@quanstro.net> From: erik quanstrom Date: Thu, 3 Sep 2009 08:50:16 -0400 To: 9fans@9fans.net In-Reply-To: <4A9FA6B5.9020302@maht0x0r.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Interested in improving networking in Plan 9 Topicbox-Message-UUID: 60f7f4fc-ead5-11e9-9d60-3106f5b1d025 > I've done it a few ways. echo commit > /n/db/0/ctl is kind of where one > ends up > > for my limbo postgres module I never got round to the fs part. i just > wrap the sql bits in their own adt i would think that rather than use an adt, one would want to make the language the communication's protocol. it seems so straightforward to just send formatted sql or pl/sql to the engine and get normally formatted output. one could just con to the engine and type away for testing. even if you've degenerated the fs to a pipe like /net/tcp/nn, it's still quite useful to see who is connected and you can import the connection easily. this isn't too far from what sql*net does, except they need to deal with sockets. they may also do wierd formatting of the data stream. - erik