mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-02 09:18:36 +02:00
Use `carray`` extension to bind array of numerics and strings, so we can avoid large and slow IN clauses, and cache prepared statements having a variable number of parameters. The extension is statically loaded and available in every connection. Consumers are encouraged to use the explicit `bindArrayXXX` methods, as the generic `bindByIndex` and `bindByName` methods are too lenient, especially from Javascript. Note `carray`` only supports UTF8 encoded strings, the API will convert the encoding when UTF16 is passed in. These new variants are not exposed to Rust yet, as the existing comment suggests they were intended for primitive types. It could be done in the future, if necessary. Differential Revision: https://phabricator.services.mozilla.com/D225334
25 lines
666 B
C++
25 lines
666 B
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_AutoSQLiteLifetime_h
|
|
#define mozilla_AutoSQLiteLifetime_h
|
|
|
|
namespace mozilla {
|
|
|
|
class AutoSQLiteLifetime final {
|
|
private:
|
|
static int sSingletonEnforcer;
|
|
static int sResult;
|
|
|
|
public:
|
|
AutoSQLiteLifetime();
|
|
~AutoSQLiteLifetime();
|
|
static void Init();
|
|
static int getInitResult() { return AutoSQLiteLifetime::sResult; }
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif
|