Home
last modified time | relevance | path

Searched refs:select_stmt (Results 1 – 25 of 162) sorted by relevance

1234567

/dports/security/gnupg/gnupg-2.3.3/kbx/
H A Dbackend-sqlite.c52 sqlite3_stmt *select_stmt; member
723 if (ctx->select_stmt) in be_sqlite_release_local()
854 if (!ctx->select_stmt) in run_select_statement()
874 if (ctx->select_stmt) in run_select_statement()
903 if (!ctx->select_stmt) in run_select_statement()
914 if (!ctx->select_stmt) in run_select_statement()
939 if (!ctx->select_stmt) in run_select_statement()
952 if (!ctx->select_stmt) in run_select_statement()
969 if (!ctx->select_stmt) in run_select_statement()
1016 if (!ctx->select_stmt) in run_select_statement()
[all …]
/dports/math/minizinc-ide/MiniZincIDE-2.5.5/cp-profiler/src/cpprofiler/
H A Ddb_handler.cpp61 QSqlQuery select_stmt (*db); in read_nodes() local
62 select_stmt.prepare(query); in read_nodes()
71 bool success = select_stmt.exec(); in read_nodes()
75 while (select_stmt.next()) in read_nodes()
77 const auto nid = NodeID(select_stmt.value(0).toInt()); in read_nodes()
78 const auto pid = NodeID(select_stmt.value(1).toInt()); in read_nodes()
79 const auto alt = select_stmt.value(2).toInt(); in read_nodes()
80 const auto kids = select_stmt.value(3).toInt(); in read_nodes()
81 const auto status = tree::NodeStatus(select_stmt.value(4).toInt()); in read_nodes()
82 const auto label = select_stmt.value(5).toString().toStdString(); in read_nodes()
/dports/devel/py-pyparsing/pyparsing-3.0.6/examples/
H A Dselect_parser.py14 select_stmt = Forward().setName("select statement") variable
67 | EXISTS + LPAR + select_stmt + RPAR
118 (IN | NOT_IN) + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR,
148 | (LPAR + select_stmt + RPAR + Optional(Optional(AS) + table_alias))
178 select_stmt << (
188 select_stmt.ignore(comment)
234 success, _ = select_stmt.runTests(tests)
/dports/www/firefox-esr/firefox-91.8.0/testing/mozbase/mozprofile/tests/
H A Dtest_permissions.py39 select_stmt = "select origin, type, permission from moz_hosts"
43 cur.execute(select_stmt)
62 cur.execute(select_stmt)
187 select_stmt = "select * from moz_hosts"
190 cur.execute(select_stmt)
/dports/www/firefox/firefox-99.0/testing/mozbase/mozprofile/tests/
H A Dtest_permissions.py39 select_stmt = "select origin, type, permission from moz_hosts"
43 cur.execute(select_stmt)
62 cur.execute(select_stmt)
187 select_stmt = "select * from moz_hosts"
190 cur.execute(select_stmt)
/dports/mail/thunderbird/thunderbird-91.8.0/testing/mozbase/mozprofile/tests/
H A Dtest_permissions.py39 select_stmt = "select origin, type, permission from moz_hosts"
43 cur.execute(select_stmt)
62 cur.execute(select_stmt)
187 select_stmt = "select * from moz_hosts"
190 cur.execute(select_stmt)
/dports/lang/spidermonkey78/firefox-78.9.0/testing/mozbase/mozprofile/tests/
H A Dtest_permissions.py39 select_stmt = 'select origin, type, permission from moz_hosts'
43 cur.execute(select_stmt)
62 cur.execute(select_stmt)
174 select_stmt = 'select * from moz_hosts'
177 cur.execute(select_stmt)
/dports/lang/spidermonkey60/firefox-60.9.0/testing/mozbase/mozprofile/tests/
H A Dpermissions.py97 select_stmt = 'select origin, type, permission from moz_hosts'
101 cur.execute(select_stmt)
120 cur.execute(select_stmt)
170 select_stmt = 'select * from moz_hosts'
174 cur.execute(select_stmt)
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/mozbase/mozprofile/tests/
H A Dpermissions.py92 select_stmt = 'select origin, type, permission from moz_hosts'
96 cur.execute(select_stmt)
115 cur.execute(select_stmt)
165 select_stmt = 'select * from moz_hosts'
169 cur.execute(select_stmt)
/dports/devel/py-pyparsing2/pyparsing-2.4.7/examples/
H A Dselect_parser.py12 select_stmt = Forward().setName("select statement") variable
65 | EXISTS + LPAR + select_stmt + RPAR
86 (IN + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR, UNARY, opAssoc.LEFT),
107 | (LPAR + select_stmt + RPAR + Optional(Optional(AS) + table_alias))
126 select_stmt << (select_core + ZeroOrMore(compound_operator + select_core)
151 select_stmt.runTests(tests)
/dports/emulators/mess/mame-mame0226/3rdparty/lsqlite3/examples/
H A Dstatement.lua21 local select_stmt = assert( db:prepare("SELECT * FROM test") )
24 for row in select_stmt:nrows() do
/dports/emulators/mame/mame-mame0226/3rdparty/lsqlite3/examples/
H A Dstatement.lua21 local select_stmt = assert( db:prepare("SELECT * FROM test") )
24 for row in select_stmt:nrows() do
/dports/databases/p5-DBD-InterBase/DBD-InterBase-0.48/t/
H A D61settx.t98 my ($stmt, $select_stmt);
101 $select_stmt = "SELECT * FROM $table WHERE 1 = 0";
104 Test($state or my $sth2 = $dbh2->prepare($select_stmt))
/dports/databases/mariadb105-client/mariadb-10.5.15/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/databases/mariadb104-server/mariadb-10.4.24/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/databases/mariadb105-server/mariadb-10.5.15/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/databases/mariadb103-server/mariadb-10.3.34/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/databases/mariadb103-client/mariadb-10.3.34/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt;
323 select_stmt= mysql_stmt_init(mysql);
324 rc= mysql_stmt_prepare(select_stmt, SL(query));
325 check_stmt_rc(rc, select_stmt);
333 check_stmt_rc(rc, select_stmt);
343 rc= mysql_stmt_execute(select_stmt);
344 check_stmt_rc(rc, select_stmt);;
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA)
350 mysql_stmt_close(select_stmt);
/dports/databases/mariadb-connector-c/mariadb-connector-c-3.2.4-src/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/databases/mariadb104-client/mariadb-10.4.24/libmariadb/unittest/libmariadb/
H A Dview.c299 MYSQL_STMT *insert_stmt, *select_stmt; in test_view_insert() local
323 select_stmt= mysql_stmt_init(mysql); in test_view_insert()
324 rc= mysql_stmt_prepare(select_stmt, SL(query)); in test_view_insert()
325 check_stmt_rc(rc, select_stmt); in test_view_insert()
333 check_stmt_rc(rc, select_stmt); in test_view_insert()
343 rc= mysql_stmt_execute(select_stmt); in test_view_insert()
344 check_stmt_rc(rc, select_stmt);; in test_view_insert()
345 while (mysql_stmt_fetch(select_stmt) != MYSQL_NO_DATA) in test_view_insert()
350 mysql_stmt_close(select_stmt); in test_view_insert()
/dports/security/maia/maia_mailguard-7f20bd4/php/
H A Dcache.php84 var $select_stmt; variable in MessageCache
240 $this->select_stmt = "SELECT maia_mail.id, ";
243 …$this->select_stmt .= "DATE_ADD(maia_mail.received_date, INTERVAL " . $_SESSION["clock_offset"] . …
247 …$this->select_stmt .= "date_trunc('second', maia_mail.received_date + INTERVAL '" . $_SESSION["clo…
250 …$this->select_stmt .= "maia_mail.score, maia_mail.sender_email, maia_mail.subject, maia_mail.envel…
495 …$paged_data = Pager_Wrapper_DB($this->dbh, $this->select_stmt, $pagerOptions, null, MDB2_FETCHMODE…
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/dd/
H A Ddd_view.cc498 String_type(view->select_stmt.str, view->select_stmt.length)); in fill_dd_view_definition()
656 view->select_stmt.length = view_definition.length(); in read_view()
657 view->select_stmt.str = (char *)strmake_root( in read_view()
674 view->view_body_utf8.str && view->select_stmt.str && in read_view()
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/sql/
H A Dcompiler.py3171 compile_state = select_stmt._compile_state_factory(select_stmt, self)
3199 select_stmt, argument
3224 select_stmt, self, **kwargs
3285 if select_stmt._hints:
3296 if select_stmt._prefixes:
3298 select_stmt, select_stmt._prefixes, **kwargs
3307 select_stmt,
3365 select_stmt,
3374 if select_stmt._statement_hints:
3391 if select_stmt._suffixes:
[all …]
/dports/databases/postgresql-plproxy/plproxy-2.10.0/src/
H A Dparser.y76 stmt: cluster_stmt | split_stmt | run_stmt | select_stmt | connect_stmt | target_stmt;
178 select_stmt: sql_start sql_token_list ';' ;
/dports/games/openbor3482/openbor-2c1ecd7/engine/source/scriptlib/
H A DProductions.h33 select_stmt, enumerator

1234567