#sqlquery
January 17, 2025 at 11:22 PM
sqlQuery
February 24, 2026 at 9:00 AM
What's the most sophisticated query you've written to solve a real-world problem? How did it take advantage of PostgreSQL's capabilities?

#SQL #Postgres #PostgreSQL #OpenSource #Database #SQLquery #Development
November 11, 2025 at 2:39 PM
I'm feeling the same way RStudio ...

allbookings = data.frame(sqlQuery(conn, q1))
Error: memory exhausted
February 20, 2026 at 5:34 AM
That’s awesome. It’s the same approach (broadly speaking) that I take in www.atdatabases.org/docs/sql - by using a class of SQLQuery for the result of the tagged templates, I can ensure both with TypeScript and at runtime that you don’t accidentally pass raw strings as db queries.
Building SQL Queries
All SQL Databases in @databases use the same approach for building SQL Queries. Using tagged template literals gives you a powerful and flexible way of creating queries without opening yourself to SQL...
www.atdatabases.org
April 13, 2026 at 8:02 AM
Frameworks are great productivity boosters but sometimes you just need a light weight thing to map SQL results to an object.

Jdbi is great for this jdbi.org 👇
March 1, 2025 at 1:33 PM
The SQL IN operator is a powerful comparison tool used in WHERE clauses to filter results based on a list of values. Let’s Explore Deeply.

madesimplemssql.com/sql-in-opera...

#dbms #Database #sqldatabase #sqldba #DBA #DBAProgram #madesimplemssql #SQLDBA #coding #backend #sqlquery #sql_help
SQL IN Operator: Top 5 Benefits - MadeSimpleMSSQL
Explore SQL IN Operator in details. This article offers a complete guide to help developers, and users.
madesimplemssql.com
July 3, 2025 at 5:47 PM
SQL Query to find members of an Active Directory Security Group | https://techygeekshome.info/sql-query-active-directory-group-members/?fsp_sid=10201 | #Guide #SystemCenter #ActiveDirectory #Guide #Microsoft #Query #SQL #SQLQuery #ActiveDirectory #SecurityGroup #BlueskyPlatform #DatabaseManagement #
SQL Query to find members of an Active Directory Security Group - TechyGeeksHome
SQL Query to find members of an Active Directory Security Group - We recently helped out with a data migration which included creating a completely new set of
techygeekshome.info
September 5, 2025 at 3:31 AM
【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す

はじめに TypeScriptのSQLタグ付きテンプレートリテラルを数行で書けて超絶便利だったので、10種類のSQLiteドライバーで試した結果を紹介します。 SQLタグ付きテンプレートリテラル 今回の記事で何回も登場しますが、先にSQLタグ付きテンプレートリテラルだけ紹介します。 type SqlBinding = null | number | string; type SqlQuery = { query: string; bindings: SqlBinding[]; };…
【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す
はじめに TypeScriptのSQLタグ付きテンプレートリテラルを数行で書けて超絶便利だったので、10種類のSQLiteドライバーで試した結果を紹介します。 SQLタグ付きテンプレートリテラル 今回の記事で何回も登場しますが、先にSQLタグ付きテンプレートリテラルだけ紹介します。 type SqlBinding = null | number | string; type SqlQuery = { query: string; bindings: SqlBinding[]; }; function sql(strings: TemplateStringsArray,... Source link
inmobilexion.com
September 13, 2025 at 2:47 PM
今日のZennトレンド

【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す
この記事は、TypeScriptのSQLタグ付きテンプレートリテラルを用いたデータベース操作手法を紹介します。
この`sql`関数はSQLインジェクション対策にもなり、クエリとバインディングを分離して簡潔に記述可能です。
筆者はこの記法を、過去記事の改訂として10種類のSQLiteドライバーで実際に試しました。
記事では、各ドライバーのコード例や特性、実行方法を具体的に解説し、ChatGPTでは得にくいニッチな技術情報の提供を目指しています。
【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す
はじめにTypeScriptのSQLタグ付きテンプレートリテラルを数行で書けて超絶便利だったので、10種類のSQLiteドライバーで試した結果を紹介します。 SQLタグ付きテンプレートリテラル今回の記事で何回も登場しますが、先にSQLタグ付きテンプレートリテラルだけ紹介します。type SqlBinding = null | number | string;type SqlQuery = {
zenn.dev
September 13, 2025 at 9:13 AM
今日のZennトレンド

【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す
この記事は、TypeScriptのSQLタグ付きテンプレートリテラルが持つ、SQLインジェクション対策された簡潔なクエリ記述の利便性を紹介します。
この強力な機能を、Node.jsやDeno、Bunなど様々な環境で用いられる10種類のSQLiteドライバー全てで試した結果を詳述。
各ドライバーでの具体的な実装コード、実行方法、特性を比較提示し、安全かつ効率的にSQLiteを扱うための決定版とも言える実践ガイドを提供することが目的です。
【決定版】TypeScriptのSQLタグ付きテンプレートリテラルで10種類のSQLiteドライバー全部試す
はじめにTypeScriptのSQLタグ付きテンプレートリテラルを数行で書けて超絶便利だったので、10種類のSQLiteドライバーで試した結果を紹介します。 SQLタグ付きテンプレートリテラル今回の記事で何回も登場しますが、先にSQLタグ付きテンプレートリテラルだけ紹介します。type SqlBinding = null | number | string;type SqlQuery = {
zenn.dev
September 13, 2025 at 9:18 PM
#SCCM #SQLQuery #MVPBuzz #CommunityRocks
Made with AI · Human-reviewed
September 9, 2026 at 9:16 AM
I'm poking away at something that looks closer to what I'd prefer. Looking nicer than SqlObject; Python gives you runtime access to parameter names:

@SqlQuery([snip])
def get(self, id: int, active: bool) -> Record

vs

@SqlQuery([snip])
Record get(@Bind("id") int id, @Bind("active") boolean active)
August 31, 2026 at 11:58 AM
Clean and merge your AI-extracted data instantly with in-memory SQL processing. Fast, free, and incredibly powerful. 🚀💻 #DataCleaning #SQLQuery
matasoft.hr/qtrendcontro...
August 25, 2026 at 7:54 AM
🚨 EUVD-2026-49640
📊 n/a

📝 SQL injection vulnerability in Dede CMS v.5.7.118 allows a remote attacker to obtain sensitive information via the sqlquery parameter of the sys_sql_query.php component

🔗 https://euvd.enisa.europa.eu/vulnerability/EUVD-2026-49640

#cybersecurity #infosec #cve #euvd
July 28, 2026 at 2:01 AM
This also lets you build up complex queries from fragments of SQL because we can tell the difference between an SQLQuery value and a raw string/object.
April 13, 2026 at 8:04 AM
SQL Queries for Make, Model and Architectures of Devices | #Guide #SystemCenter #SQL #SQLQuery #Database #DataEngineering #DeviceManagement
April 9, 2026 at 1:09 AM
I've found the ParseResult structure returned from pg_query::parse() to be fairly tedious to navigate and use. I've now created my own structures, the top level called SqlQuery, and a function to convert a ParseResult to a SqlQuery.
August 5, 2025 at 2:33 AM
📦 burnbright/silverstripe-sqlquerylist 3.1.0

Wraps a SilverStripe SQLQuery in a SS_List

🔗 https://github.com/silvershop/silverstripe-sqlquerylist
March 4, 2026 at 7:10 PM