Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:115012 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 34146 invoked from network); 22 Jun 2021 09:10:44 -0000 Received: from unknown (HELO php-smtp4.php.net) (45.112.84.5) by pb1.pair.com with SMTP; 22 Jun 2021 09:10:44 -0000 Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 99E87180507 for ; Tue, 22 Jun 2021 02:28:57 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE autolearn=no autolearn_force=no version=3.4.2 X-Spam-Virus: No X-Envelope-From: Received: from mail-vs1-f50.google.com (mail-vs1-f50.google.com [209.85.217.50]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Tue, 22 Jun 2021 02:28:57 -0700 (PDT) Received: by mail-vs1-f50.google.com with SMTP id b1so10857063vsh.7 for ; Tue, 22 Jun 2021 02:28:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=basereality-com.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=842uA9XUTsiCE9JuDp2GkBLDTrOgRGlcaiffe7C8sj0=; b=pdti1BdTL99qL3eSgXbB1itylUR1AWj2CaeXG/mKTm9GzCzuhTH/Zxs8y4LpTHanqr 75GO9gyksY3dk//nrfUnUDVZd+8fbgKfWt4fvDpZUBrJ37fCR2u3s6w8V63C40IdCLEZ rWw2CEtATpE5riIATXFToQ7L2uzRPqGTlatQ6FVdUdVOs9J6iXq/WBfDNBdB8+klFq7g Sz8EZpSSCgMBNCDnn+AxeBAqrbEoYHhZQDIo+0Y0dU05UB3b2AhaD/bF/ppCGdfTKyme IVx2GVKgMOmLJozaS0IHD1vDFjqOpwdZTiO4hzMQqjuFypWBpcw1eLRXO6fu1tEWkSdb cHXg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=842uA9XUTsiCE9JuDp2GkBLDTrOgRGlcaiffe7C8sj0=; b=S2oFhE7jIvaodQJrWNhi+YqCiE6vLYJZwhZ9N2+hXgcppObVuhMWOmvmF76BJXDYEP v6QKix4f2FuM9hTsfvY4DU2RIWDuFW7cRaIqQBfFhTb//vBvA/L36MULcmLTxlX8XgdX G1k+Rdc+hy1ItdY3dHCMVttW6FTnCevOXL4ogYYwRyNpAx1N3BkqvY0YjJHr1osM+SsL VIK65C9os+9UwivxVn+DVatCL9y1SVM4N8MUq4YAlNIWe9CYoqenlu5lMuAerjtjfVMq 7wfeTD8IxfJdEGLTu13eR3dZJR4j4GlFUs5F5VbTV4jLaJWOdOgR6MBpkLE10HpA/zPN 9aEw== X-Gm-Message-State: AOAM530JYAGqi/tnyXmGw5c4+UwCXoZNxYqHsd4Pcqpl+7DqbFAnrxz4 fKHZnqHRDkVSIL8Ef95PnA9OgnBoG6RSmmuySXYpubF5QrZAxIX1 X-Google-Smtp-Source: ABdhPJw3mwCxtSzpcxCqQdDxGlgmJqmFT3Dr5C73DwFTiSldZJjUfKsyChO3700aoOQRWaDaics6sJ5D0Ab4+IO/iLg= X-Received: by 2002:a67:1905:: with SMTP id 5mr21072285vsz.1.1624354133478; Tue, 22 Jun 2021 02:28:53 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: Date: Tue, 22 Jun 2021 10:28:41 +0100 Message-ID: To: Mike Schinkel Cc: PHP internals Content-Type: text/plain; charset="UTF-8" Subject: Re: [PHP-DEV] [RFC] is_literal From: Danack@basereality.com (Dan Ackroyd) On Tue, 22 Jun 2021 at 10:25, Mike Schinkel wrote: > > Should(n't?) PHP add a basic SQL builder class that can be extended for special cases, e.g. different flavors of SQL? > No. Or at least not yet. This type of thing is much better done in userland, where the api can evolve at a fast rate, rather than being limited by the fixed release schedule of PHP. If, after people had settled on a good api, someone could make a strong argument for adding it to core, it could be evaluated then. cheers Dan Ack