Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
doc /
html /
_sources /
[ HOME SHELL ]
Name
Size
Permission
Action
bookmarks.txt
2.34
KB
-rwxrwxr-x
charts.txt
4.63
KB
-rwxrwxr-x
config.txt
106.67
KB
-rwxrwxr-x
copyright.txt
1.57
KB
-rwxrwxr-x
credits.txt
26.05
KB
-rwxrwxr-x
developers.txt
380
B
-rwxrwxr-x
faq.txt
92.89
KB
-rwxrwxr-x
glossary.txt
13.46
KB
-rwxrwxr-x
import_export.txt
10.23
KB
-rwxrwxr-x
index.txt
561
B
-rwxrwxr-x
intro.txt
3.05
KB
-rwxrwxr-x
other.txt
914
B
-rwxrwxr-x
privileges.txt
3.24
KB
-rwxrwxr-x
relations.txt
3.27
KB
-rwxrwxr-x
require.txt
1.59
KB
-rwxrwxr-x
settings.txt
977
B
-rwxrwxr-x
setup.txt
37.18
KB
-rwxrwxr-x
transformations.txt
6.38
KB
-rwxrwxr-x
user.txt
169
B
-rwxrwxr-x
vendors.txt
1.1
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bookmarks.txt
.. _bookmarks: Bookmarks ========= .. note:: You need to have configured the :ref:`linked-tables` for using bookmarks feature. Storing bookmarks ----------------- Any query you have executed can be stored as a bookmark on the page where the results are displayed. You will find a button labeled :guilabel:`Bookmark this query` just at the end of the page. As soon as you have stored a bookmark, it is related to the database you run the query on. You can now access a bookmark dropdown on each page, the query box appears on for that database. Variables inside bookmarks -------------------------- You can also have, inside the query, placeholders for variables. This is done by inserting into the query SQL comments between ``/*`` and ``*/``. Inside the comments, the special strings ``[VARIABLE{variable-number}]`` is used. Be aware that the whole query minus the SQL comments must be valid by itself, otherwise you won't be able to store it as a bookmark. When you execute the bookmark, everything typed into the *Variables* input boxes on the query box page will replace the strings ``/*[VARIABLE{variable-number}]*/`` in your stored query. Also remember, that everything else inside the ``/*[VARIABLE{variable-number}]*/`` string for your query will remain the way it is, but will be stripped of the ``/**/`` chars. So you can use: .. code-block:: mysql /*, [VARIABLE1] AS myname */ which will be expanded to .. code-block:: mysql , VARIABLE1 as myname in your query, where VARIABLE1 is the string you entered in the Variable 1 input box. A more complex example. Say you have stored this query: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE1]%' */ Say, you now enter "phpMyAdmin" as the variable for the stored query, the full query will be: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' **NOTE THE ABSENCE OF SPACES** inside the ``/**/`` construct. Any spaces inserted there will be later also inserted as spaces in your query and may lead to unexpected results especially when using the variable expansion inside of a "LIKE ''" expression. Browsing table using bookmark ----------------------------- When bookmark is named same as table, it will be used as query when browsing this table. .. seealso:: :ref:`faqbookmark`, :ref:`faq6_22`
Close