Home
last modified time | relevance | path

Searched refs:sql_value (Results 1 – 25 of 83) sorted by relevance

1234

/dports/devel/cdash/CDash-2-2-3/
H A DfilterdataFunctions.php673 return $sql_value;
682 $sql_value = '';
695 $sql_value = "0";
703 $sql_value = "0";
716 $sql_value = "'$value'";
724 $sql_value = "'$value'";
732 $sql_value = "'$value'";
740 $sql_value = "'$value'";
753 $sql_value = "'$value'";
761 $sql_value = "'$value'";
[all …]
/dports/audio/beets/beets-1.4.9/beets/dbcore/
H A Dtypes.py93 def from_sql(self, sql_value): argument
107 if isinstance(sql_value, buffer):
108 sql_value = bytes(sql_value).decode('utf-8', 'ignore')
109 if isinstance(sql_value, six.text_type):
110 return self.parse(sql_value)
112 return self.normalize(sql_value)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/bindings/modules/v8/
H A Dto_v8_for_modules.h18 inline v8::Local<v8::Value> ToV8(const SQLValue& sql_value, in ToV8() argument
21 switch (sql_value.GetType()) { in ToV8()
25 return v8::Number::New(isolate, sql_value.Number()); in ToV8()
27 return V8String(isolate, sql_value.GetString()); in ToV8()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/bindings/modules/v8/
H A Dto_v8_for_modules.h18 inline v8::Local<v8::Value> ToV8(const SQLValue& sql_value, in ToV8() argument
21 switch (sql_value.GetType()) { in ToV8()
25 return v8::Number::New(isolate, sql_value.Number()); in ToV8()
27 return V8String(isolate, sql_value.GetString()); in ToV8()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/trace_processor/metrics/
H A Dmetrics.cc47 SqlValue sql_value; in SqlValueFromSqliteValue() local
50 sql_value.type = SqlValue::Type::kLong; in SqlValueFromSqliteValue()
51 sql_value.long_value = sqlite3_value_int64(value); in SqlValueFromSqliteValue()
54 sql_value.type = SqlValue::Type::kDouble; in SqlValueFromSqliteValue()
55 sql_value.double_value = sqlite3_value_double(value); in SqlValueFromSqliteValue()
58 sql_value.type = SqlValue::Type::kString; in SqlValueFromSqliteValue()
59 sql_value.string_value = in SqlValueFromSqliteValue()
63 sql_value.type = SqlValue::Type::kBytes; in SqlValueFromSqliteValue()
64 sql_value.bytes_value = sqlite3_value_blob(value); in SqlValueFromSqliteValue()
65 sql_value.bytes_count = static_cast<size_t>(sqlite3_value_bytes(value)); in SqlValueFromSqliteValue()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/metrics/
H A Dmetrics.cc46 SqlValue sql_value; in SqlValueFromSqliteValue() local
49 sql_value.type = SqlValue::Type::kLong; in SqlValueFromSqliteValue()
50 sql_value.long_value = sqlite3_value_int64(value); in SqlValueFromSqliteValue()
53 sql_value.type = SqlValue::Type::kDouble; in SqlValueFromSqliteValue()
54 sql_value.double_value = sqlite3_value_double(value); in SqlValueFromSqliteValue()
57 sql_value.type = SqlValue::Type::kString; in SqlValueFromSqliteValue()
58 sql_value.string_value = in SqlValueFromSqliteValue()
62 sql_value.type = SqlValue::Type::kBytes; in SqlValueFromSqliteValue()
63 sql_value.bytes_value = sqlite3_value_blob(value); in SqlValueFromSqliteValue()
64 sql_value.bytes_count = static_cast<size_t>(sqlite3_value_bytes(value)); in SqlValueFromSqliteValue()
[all …]
/dports/databases/soci/soci-4.0.1/include/private/firebird/
H A Dcommon.h153 float sql_value = static_cast<float>(value);
154 std::memcpy(var->sqldata, &sql_value, sizeof(float));
159 double sql_value = static_cast<double>(value);
160 std::memcpy(var->sqldata, &sql_value, sizeof(double));
/dports/net-mgmt/ocsinventory-ocsreports/ocsinventory-ocsreports/plugins/main_sections/ms_doubles/
H A Dms_doubles.php80 foreach ($sql_doublon as $name => $sql_value) {
81 $res = mysql2_query_secure($sql_value, $_SESSION['OCS']["readServer"], $arg_doublon[$name]);
176 foreach($sql_id_doublon as $name=>$sql_value){
177 $res = mysql2_query_secure($sql_value, $_SESSION['OCS']["readServer"],$arg_id_doublon[$name]);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/webdatabase/
H A DBUILD.gn64 "sqlite/sql_value.cc",
65 "sqlite/sql_value.h",
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/webdatabase/
H A DBUILD.gn62 "sqlite/sql_value.cc",
63 "sqlite/sql_value.h",
/dports/chinese/phpbb-tw/phpBB2/admin/
H A Dadmin_ug_auth.php398 $sql_value = ''; variable
402 $sql_value .= ( ( $sql_value != '' ) ? ', ' : '' ) . $value;
405 …$sql_value .= ( ( $sql_value != '' ) ? ', ' : '' ) . ( ( !isset($update_mod_status[$forum_id]) ) ?…
408 VALUES ($forum_id, $group_id, $sql_value)";
/dports/www/phpbb/phpBB2/admin/
H A Dadmin_ug_auth.php398 $sql_value = ''; variable
402 $sql_value .= ( ( $sql_value != '' ) ? ', ' : '' ) . $value;
405 …$sql_value .= ( ( $sql_value != '' ) ? ', ' : '' ) . ( ( !isset($update_mod_status[$forum_id]) ) ?…
408 VALUES ($forum_id, $group_id, $sql_value)";
/dports/databases/pear-Horde_Db/Horde_Db-2.4.0/lib/Horde/Db/Adapter/
H A DBase.php797 $sql_value = '<binary_data>';
799 $sql_value = $this->quote($value);
801 $sql .= $sql_value . array_shift($sqlPieces);
/dports/lang/php73/php-7.3.33/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/databases/php81-mysqli/php-8.1.1/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt73 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
91 if (is_string($sql_value)) {
92 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
97 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/databases/php74-mysqli/php-7.4.27/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/databases/php80-mysqli/php-8.0.15/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt72 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
90 if (is_string($sql_value)) {
91 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
96 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/databases/php73-mysqli/php-7.3.33/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/www/mod_php81/php-8.1.1/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt73 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
91 if (is_string($sql_value)) {
92 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
97 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/lang/php81/php-8.1.1/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt73 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
91 if (is_string($sql_value)) {
92 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
97 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/lang/php74/php-7.4.27/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/lang/php80/php-8.0.15/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt72 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
90 if (is_string($sql_value)) {
91 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
96 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/www/mod_php73/php-7.3.33/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/www/mod_php80/php-8.0.15/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt72 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
90 if (is_string($sql_value)) {
91 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
96 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {
/dports/www/mod_php74/php-7.4.27/ext/mysqli/tests/
H A Dmysqli_fetch_array_oo.phpt71 …function func_mysqli_fetch_array($mysqli, $engine, $sql_type, $sql_value, $php_value, $offset, $re…
89 if (is_string($sql_value)) {
90 … if (!$mysqli->query($sql = "INSERT INTO test(id, label) VALUES (1, '" . $sql_value . "')")) {
95 … if (!$mysqli->query($sql = sprintf("INSERT INTO test(id, label) VALUES (1, '%d')", $sql_value))) {

1234