From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Rob Sargent Newsgroups: gmane.emacs.help Subject: sql-postgres connect using URL Date: Wed, 26 Oct 2022 16:43:05 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="35562"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.2 To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Thu Oct 27 22:04:05 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oo96i-0008vE-VU for geh-help-gnu-emacs@m.gmane-mx.org; Thu, 27 Oct 2022 22:04:04 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oo963-0000qC-Po; Thu, 27 Oct 2022 16:03:23 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oo8xH-0000gz-Ux for help-gnu-emacs@gnu.org; Thu, 27 Oct 2022 15:54:19 -0400 Original-Received: from havoc.proulx.com ([96.88.95.61]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oo8c4-00043k-9x for help-gnu-emacs@gnu.org; Thu, 27 Oct 2022 15:32:25 -0400 Original-Received: by havoc.proulx.com (Postfix, from userid 1027) id 5D175589; Thu, 27 Oct 2022 13:32:18 -0600 (MDT) Resent-From: Mailing List Manager Resent-Date: Thu, 27 Oct 2022 13:32:18 -0600 Resent-Message-ID: <20221027193218.GA27363@havoc.proulx.com> Resent-To: help-gnu-emacs@gnu.org Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1onp7W-00069l-8v for help-gnu-emacs@gnu.org; Wed, 26 Oct 2022 18:43:34 -0400 Original-Received: from out02.mta.xmission.com ([166.70.13.232]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1onp7U-0008NC-Fe for help-gnu-emacs@gnu.org; Wed, 26 Oct 2022 18:43:34 -0400 Original-Received: from in02.mta.xmission.com ([166.70.13.52]:43180) by out02.mta.xmission.com with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1onp77-00GbQM-AZ for help-gnu-emacs@gnu.org; Wed, 26 Oct 2022 16:43:09 -0600 Original-Received: from [155.98.131.0] (port=44054 helo=[10.128.56.136]) by in02.mta.xmission.com with esmtpa (Exim 4.93) (envelope-from ) id 1onp76-00DEBL-H5 for help-gnu-emacs@gnu.org; Wed, 26 Oct 2022 16:43:08 -0600 Content-Language: en-CA Received-SPF: pass client-ip=96.88.95.61; envelope-from=mlmgr@proulx.com; helo=havoc.proulx.com X-Spam_score_int: -5 X-Spam_score: -0.6 X-Spam_bar: / X-Spam_report: (-0.6 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.249, HK_RANDOM_ENVFROM=0.998, HTML_MESSAGE=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_KAM_HTML_FONT_INVALID=0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Thu, 27 Oct 2022 16:03:22 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: "help-gnu-emacs" Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:140436 Archived-At: I need to be able to supple option TCP options in my sql-postgres sessions. I've tried the following, without effect so far. |(setq sql-connection-alist '(db (sql-product 'postgres) (sql-database ("postgresql://myusername@host/dbname?keepalives_idle=69?other=...")))|