OSDN Git Service

meson 0.60.2: Cancel reservation. Commit the sources so far.
[linuxjm/jm.git] / manual / sqlite / po4a / sqlite.pot
1 # SOME DESCRIPTIVE TITLE
2 # Copyright (C) YEAR Free Software Foundation, Inc.
3 # This file is distributed under the same license as the PACKAGE package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5 #
6 #, fuzzy
7 msgid ""
8 msgstr ""
9 "Project-Id-Version: PACKAGE VERSION\n"
10 "POT-Creation-Date: 2021-06-19 15:28+0900\n"
11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18
19 #. type: TH
20 #: original/man1/sqlite3.1:5
21 #, no-wrap
22 msgid "SQLITE3"
23 msgstr ""
24
25 #. type: TH
26 #: original/man1/sqlite3.1:5
27 #, no-wrap
28 msgid "Fri Oct 31 10:41:31 EDT 2014"
29 msgstr ""
30
31 #.  Please adjust this date whenever revising the manpage.
32 #
33 #.  Some roff macros, for reference:
34 #.  .nh        disable hyphenation
35 #.  .hy        enable hyphenation
36 #.  .ad l      left justify
37 #.  .ad b      justify to both left and right margins
38 #.  .nf        disable filling
39 #.  .fi        enable filling
40 #.  .br        insert line break
41 #.  .sp <n>    insert n+1 empty lines
42 #.  for manpage-specific macros, see man(7)
43 #. type: SH
44 #: original/man1/sqlite3.1:18
45 #, no-wrap
46 msgid "NAME"
47 msgstr ""
48
49 #. type: Plain text
50 #: original/man1/sqlite3.1:21
51 msgid "B<sqlite3> - A command line interface for SQLite version 3"
52 msgstr ""
53
54 #. type: SH
55 #: original/man1/sqlite3.1:22
56 #, no-wrap
57 msgid "SYNOPSIS"
58 msgstr ""
59
60 #. type: Plain text
61 #: original/man1/sqlite3.1:27
62 msgid "B<sqlite3> [I<options>] [I<databasefile>] [I<SQL>]"
63 msgstr ""
64
65 #. type: SH
66 #: original/man1/sqlite3.1:28
67 #, no-wrap
68 msgid "SUMMARY"
69 msgstr ""
70
71 #. type: Plain text
72 #: original/man1/sqlite3.1:36
73 msgid ""
74 "B<sqlite3> is a terminal-based front-end to the SQLite library that can "
75 "evaluate queries interactively and display the results in multiple formats.  "
76 "B<sqlite3> can also be used within shell scripts and other applications to "
77 "provide batch processing features."
78 msgstr ""
79
80 #. type: SH
81 #: original/man1/sqlite3.1:37
82 #, no-wrap
83 msgid "DESCRIPTION"
84 msgstr ""
85
86 #. type: Plain text
87 #: original/man1/sqlite3.1:45
88 msgid ""
89 "To start a B<sqlite3> interactive session, invoke the B<sqlite3> command and "
90 "optionally provide the name of a database file.  If the database file does "
91 "not exist, it will be created.  If the database file does exist, it will be "
92 "opened."
93 msgstr ""
94
95 #. type: Plain text
96 #: original/man1/sqlite3.1:48
97 msgid ""
98 "For example, to create a new database file named \"mydata.db\", create a "
99 "table named \"memos\" and insert a couple of records into that table:"
100 msgstr ""
101
102 #. type: Plain text
103 #: original/man1/sqlite3.1:51
104 msgid "$ B<sqlite3 mydata.db>"
105 msgstr ""
106
107 #. type: Plain text
108 #: original/man1/sqlite3.1:53
109 msgid "SQLite version 3.8.8"
110 msgstr ""
111
112 #. type: Plain text
113 #: original/man1/sqlite3.1:55
114 msgid "Enter \".help\" for instructions"
115 msgstr ""
116
117 #. type: Plain text
118 #: original/man1/sqlite3.1:58
119 msgid "sqliteE<gt> B<create table memos(text, priority INTEGER);>"
120 msgstr ""
121
122 #. type: Plain text
123 #: original/man1/sqlite3.1:61
124 msgid "sqliteE<gt> B<insert into memos values('deliver project description', 10);>"
125 msgstr ""
126
127 #. type: Plain text
128 #: original/man1/sqlite3.1:64
129 msgid "sqliteE<gt> B<insert into memos values('lunch with Christine', 100);>"
130 msgstr ""
131
132 #. type: Plain text
133 #: original/man1/sqlite3.1:67
134 msgid "sqliteE<gt> B<select * from memos;>"
135 msgstr ""
136
137 #. type: Plain text
138 #: original/man1/sqlite3.1:69
139 msgid "deliver project description|10"
140 msgstr ""
141
142 #. type: Plain text
143 #: original/man1/sqlite3.1:71
144 msgid "lunch with Christine|100"
145 msgstr ""
146
147 #. type: Plain text
148 #: original/man1/sqlite3.1:73
149 msgid "sqliteE<gt>"
150 msgstr ""
151
152 #. type: Plain text
153 #: original/man1/sqlite3.1:80
154 msgid ""
155 "If no database name is supplied, the ATTACH sql command can be used to "
156 "attach to existing or create new database files.  ATTACH can also be used to "
157 "attach to multiple databases within the same interactive session.  This is "
158 "useful for migrating data between databases, possibly changing the schema "
159 "along the way."
160 msgstr ""
161
162 #. type: Plain text
163 #: original/man1/sqlite3.1:84
164 msgid ""
165 "Optionally, a SQL statement or set of SQL statements can be supplied as a "
166 "single argument.  Multiple statements should be separated by semi-colons."
167 msgstr ""
168
169 #. type: Plain text
170 #: original/man1/sqlite3.1:86
171 msgid "For example:"
172 msgstr ""
173
174 #. type: Plain text
175 #: original/man1/sqlite3.1:89
176 msgid "$ B<sqlite3 -line mydata.db 'select * from memos where priority E<gt> 20;'>"
177 msgstr ""
178
179 #. type: Plain text
180 #: original/man1/sqlite3.1:91
181 #, no-wrap
182 msgid "    text = lunch with Christine\n"
183 msgstr ""
184
185 #. type: Plain text
186 #: original/man1/sqlite3.1:93
187 msgid "priority = 100"
188 msgstr ""
189
190 #. type: SS
191 #: original/man1/sqlite3.1:96
192 #, no-wrap
193 msgid "SQLITE META-COMMANDS"
194 msgstr ""
195
196 #. type: Plain text
197 #: original/man1/sqlite3.1:103
198 msgid ""
199 "The interactive interpreter offers a set of meta-commands that can be used "
200 "to control the output format, examine the currently attached database files, "
201 "or perform administrative operations upon the attached databases (such as "
202 "rebuilding indices).  Meta-commands are always prefixed with a dot (.)."
203 msgstr ""
204
205 #. type: Plain text
206 #: original/man1/sqlite3.1:106
207 msgid ""
208 "A list of available meta-commands can be viewed at any time by issuing the "
209 "'.help' command.  For example:"
210 msgstr ""
211
212 #. type: Plain text
213 #: original/man1/sqlite3.1:109
214 msgid "sqliteE<gt> B<.help>"
215 msgstr ""
216
217 #. type: Plain text
218 #: original/man1/sqlite3.1:170
219 #, no-wrap
220 msgid ""
221 "%backup ?DB? FILE      Backup DB (default \"main\") to FILE\n"
222 "%bail on|off           Stop after hitting an error.  Default OFF\n"
223 "%clone NEWDB           Clone data into NEWDB from the existing database\n"
224 "%databases             List names and files of attached databases\n"
225 "%dump ?TABLE? ...      Dump the database in an SQL text format\n"
226 "                         If TABLE specified, only dump tables matching\n"
227 "                         LIKE pattern TABLE.\n"
228 "%echo on|off           Turn command echo on or off\n"
229 "%eqp on|off            Enable or disable automatic EXPLAIN QUERY PLAN\n"
230 "%exit                  Exit this program\n"
231 "%explain ?on|off?      Turn output mode suitable for EXPLAIN on or off.\n"
232 "                         With no args, it turns EXPLAIN on.\n"
233 "%fullschema            Show schema and the content of sqlite_stat tables\n"
234 "%headers on|off        Turn display of headers on or off\n"
235 "%help                  Show this message\n"
236 "%import FILE TABLE     Import data from FILE into TABLE\n"
237 "%indices ?TABLE?       Show names of all indices\n"
238 "                         If TABLE specified, only show indices for tables\n"
239 "                         matching LIKE pattern TABLE.\n"
240 "%load FILE ?ENTRY?     Load an extension library\n"
241 "%log FILE|off          Turn logging on or off.  FILE can be stderr/stdout\n"
242 "%mode MODE ?TABLE?     Set output mode where MODE is one of:\n"
243 "                         csv      Comma-separated values\n"
244 "                         column   Left-aligned columns.  (See .width)\n"
245 "                         html     HTML E<lt>tableE<gt> code\n"
246 "                         insert   SQL insert statements for TABLE\n"
247 "                         line     One value per line\n"
248 "                         list     Values delimited by .separator string\n"
249 "                         tabs     Tab-separated values\n"
250 "                         tcl      TCL list elements\n"
251 "%nullvalue STRING      Use STRING in place of NULL values\n"
252 "%once FILENAME         Output for the next SQL command only to FILENAME\n"
253 "%open ?FILENAME?       Close existing database and reopen FILENAME\n"
254 "%output ?FILENAME?     Send output to FILENAME or stdout\n"
255 "%print STRING...       Print literal STRING\n"
256 "%prompt MAIN CONTINUE  Replace the standard prompts\n"
257 "%quit                  Exit this program\n"
258 "%read FILENAME         Execute SQL in FILENAME\n"
259 "%restore ?DB? FILE     Restore content of DB (default \"main\") from FILE\n"
260 "%save FILE             Write in-memory database into FILE\n"
261 "%schema ?TABLE?        Show the CREATE statements\n"
262 "                         If TABLE specified, only show tables matching\n"
263 "                         LIKE pattern TABLE.\n"
264 "%separator STRING ?NL? Change separator used by output mode and .import\n"
265 "                         NL is the end-of-line mark for CSV\n"
266 "%shell CMD ARGS...     Run CMD ARGS... in a system shell\n"
267 "%show                  Show the current values for various settings\n"
268 "%stats on|off          Turn stats on or off\n"
269 "%system CMD ARGS...    Run CMD ARGS... in a system shell\n"
270 "%tables ?TABLE?        List names of tables\n"
271 "                         If TABLE specified, only list tables matching\n"
272 "                         LIKE pattern TABLE.\n"
273 "%timeout MS            Try opening locked tables for MS milliseconds\n"
274 "%timer on|off          Turn SQL timer on or off\n"
275 "%trace FILE|off        Output each SQL statement as it is run\n"
276 "%vfsname ?AUX?         Print the name of the VFS stack\n"
277 "%width NUM1 NUM2 ...   Set column widths for \"column\" mode\n"
278 "                         Negative values right-justify\n"
279 "sqliteE<gt>\n"
280 msgstr ""
281
282 #. type: SH
283 #: original/man1/sqlite3.1:172
284 #, no-wrap
285 msgid "OPTIONS"
286 msgstr ""
287
288 #. type: Plain text
289 #: original/man1/sqlite3.1:175
290 msgid "B<sqlite3> has the following options:"
291 msgstr ""
292
293 #. type: TP
294 #: original/man1/sqlite3.1:175
295 #, no-wrap
296 msgid "B<-bail>"
297 msgstr ""
298
299 #. type: Plain text
300 #: original/man1/sqlite3.1:178
301 msgid "Stop after hitting an error."
302 msgstr ""
303
304 #. type: TP
305 #: original/man1/sqlite3.1:178
306 #, no-wrap
307 msgid "B<-batch>"
308 msgstr ""
309
310 #. type: Plain text
311 #: original/man1/sqlite3.1:181
312 msgid "Force batch I/O."
313 msgstr ""
314
315 #. type: TP
316 #: original/man1/sqlite3.1:181
317 #, no-wrap
318 msgid "B<-column>"
319 msgstr ""
320
321 #. type: Plain text
322 #: original/man1/sqlite3.1:186
323 msgid ""
324 "Query results will be displayed in a table like form, using whitespace "
325 "characters to separate the columns and align the output."
326 msgstr ""
327
328 #. type: TP
329 #: original/man1/sqlite3.1:186
330 #, no-wrap
331 msgid "B<-cmd\\ >I<command>"
332 msgstr ""
333
334 #. type: Plain text
335 #: original/man1/sqlite3.1:191
336 msgid "run I<command> before reading stdin"
337 msgstr ""
338
339 #. type: TP
340 #: original/man1/sqlite3.1:191
341 #, no-wrap
342 msgid "B<-csv>"
343 msgstr ""
344
345 #. type: Plain text
346 #: original/man1/sqlite3.1:194
347 msgid "Set output mode to CSV (comma separated values)."
348 msgstr ""
349
350 #. type: TP
351 #: original/man1/sqlite3.1:194
352 #, no-wrap
353 msgid "B<-echo>"
354 msgstr ""
355
356 #. type: Plain text
357 #: original/man1/sqlite3.1:197
358 msgid "Print commands before execution."
359 msgstr ""
360
361 #. type: TP
362 #: original/man1/sqlite3.1:197
363 #, no-wrap
364 msgid "B<-init\\ >I<file>"
365 msgstr ""
366
367 #. type: Plain text
368 #: original/man1/sqlite3.1:202
369 msgid ""
370 "Read and execute commands from I<file> , which can contain a mix of SQL "
371 "statements and meta-commands."
372 msgstr ""
373
374 #. type: TP
375 #: original/man1/sqlite3.1:202
376 #, no-wrap
377 msgid "B<-[no]header>"
378 msgstr ""
379
380 #. type: Plain text
381 #: original/man1/sqlite3.1:205
382 msgid "Turn headers on or off."
383 msgstr ""
384
385 #. type: TP
386 #: original/man1/sqlite3.1:205
387 #, no-wrap
388 msgid "B<-help>"
389 msgstr ""
390
391 #. type: Plain text
392 #: original/man1/sqlite3.1:208
393 msgid "Show help on options and exit."
394 msgstr ""
395
396 #. type: TP
397 #: original/man1/sqlite3.1:208
398 #, no-wrap
399 msgid "B<-html>"
400 msgstr ""
401
402 #. type: Plain text
403 #: original/man1/sqlite3.1:211
404 msgid "Query results will be output as simple HTML tables."
405 msgstr ""
406
407 #. type: TP
408 #: original/man1/sqlite3.1:211
409 #, no-wrap
410 msgid "B<-interactive>"
411 msgstr ""
412
413 #. type: Plain text
414 #: original/man1/sqlite3.1:214
415 msgid "Force interactive I/O."
416 msgstr ""
417
418 #. type: TP
419 #: original/man1/sqlite3.1:214
420 #, no-wrap
421 msgid "B<-line>"
422 msgstr ""
423
424 #. type: Plain text
425 #: original/man1/sqlite3.1:219
426 msgid ""
427 "Query results will be displayed with one value per line, rows separated by a "
428 "blank line.  Designed to be easily parsed by scripts or other programs"
429 msgstr ""
430
431 #. type: TP
432 #: original/man1/sqlite3.1:219
433 #, no-wrap
434 msgid "B<-list>"
435 msgstr ""
436
437 #. type: Plain text
438 #: original/man1/sqlite3.1:223
439 msgid ""
440 "Query results will be displayed with the separator (|, by default)  "
441 "character between each field value.  The default."
442 msgstr ""
443
444 #. type: TP
445 #: original/man1/sqlite3.1:223
446 #, no-wrap
447 msgid "B<-mmap\\ >I<N>"
448 msgstr ""
449
450 #. type: Plain text
451 #: original/man1/sqlite3.1:227
452 msgid "Set default mmap size to I<N>"
453 msgstr ""
454
455 #. type: TP
456 #: original/man1/sqlite3.1:228
457 #, no-wrap
458 msgid "B<-nullvalue\\ >I<string>"
459 msgstr ""
460
461 #. type: Plain text
462 #: original/man1/sqlite3.1:232
463 msgid "Set string used to represent NULL values.  Default is '' (empty string)."
464 msgstr ""
465
466 #. type: TP
467 #: original/man1/sqlite3.1:232
468 #, no-wrap
469 msgid "B<-separator\\ >I<separator>"
470 msgstr ""
471
472 #. type: Plain text
473 #: original/man1/sqlite3.1:235
474 msgid "Set output field separator.  Default is '|'."
475 msgstr ""
476
477 #. type: TP
478 #: original/man1/sqlite3.1:235
479 #, no-wrap
480 msgid "B<-stats>"
481 msgstr ""
482
483 #. type: Plain text
484 #: original/man1/sqlite3.1:238
485 msgid "Print memory stats before each finalize."
486 msgstr ""
487
488 #. type: TP
489 #: original/man1/sqlite3.1:238
490 #, no-wrap
491 msgid "B<-version>"
492 msgstr ""
493
494 #. type: Plain text
495 #: original/man1/sqlite3.1:241
496 msgid "Show SQLite version."
497 msgstr ""
498
499 #. type: TP
500 #: original/man1/sqlite3.1:241
501 #, no-wrap
502 msgid "B<-vfs\\ >I<name>"
503 msgstr ""
504
505 #. type: Plain text
506 #: original/man1/sqlite3.1:246
507 msgid "Use I<name> as the default VFS."
508 msgstr ""
509
510 #. type: SH
511 #: original/man1/sqlite3.1:248
512 #, no-wrap
513 msgid "INIT FILE"
514 msgstr ""
515
516 #. type: Plain text
517 #: original/man1/sqlite3.1:254
518 msgid ""
519 "B<sqlite3> reads an initialization file to set the configuration of the "
520 "interactive environment.  Throughout initialization, any previously "
521 "specified setting can be overridden.  The sequence of initialization is as "
522 "follows:"
523 msgstr ""
524
525 #. type: Plain text
526 #: original/man1/sqlite3.1:256
527 msgid "o The default configuration is established as follows:"
528 msgstr ""
529
530 #. type: Plain text
531 #: original/man1/sqlite3.1:265
532 #, no-wrap
533 msgid ""
534 "mode            = LIST\n"
535 "separator       = \"|\"\n"
536 "main prompt     = \"sqliteE<gt> \"\n"
537 "continue prompt = \"   ...E<gt> \"\n"
538 "|cc .\n"
539 msgstr ""
540
541 #. type: Plain text
542 #: original/man1/sqlite3.1:273
543 msgid ""
544 "o If the file B<~/.sqliterc> exists, it is processed first.  can be found in "
545 "the user's home directory, it is read and processed.  It should generally "
546 "only contain meta-commands."
547 msgstr ""
548
549 #. type: Plain text
550 #: original/man1/sqlite3.1:275
551 msgid "o If the -init option is present, the specified file is processed."
552 msgstr ""
553
554 #. type: Plain text
555 #: original/man1/sqlite3.1:277
556 msgid "o All other command line options are processed."
557 msgstr ""
558
559 #. type: SH
560 #: original/man1/sqlite3.1:278
561 #, no-wrap
562 msgid "SEE ALSO"
563 msgstr ""
564
565 #. type: Plain text
566 #: original/man1/sqlite3.1:280
567 msgid "http://www.sqlite.org/cli.html"
568 msgstr ""
569
570 #. type: Plain text
571 #: original/man1/sqlite3.1:282
572 msgid "The sqlite3-doc package."
573 msgstr ""
574
575 #. type: SH
576 #: original/man1/sqlite3.1:282
577 #, no-wrap
578 msgid "AUTHOR"
579 msgstr ""
580
581 #. type: Plain text
582 #: original/man1/sqlite3.1:286
583 msgid ""
584 "This manual page was originally written by Andreas Rottmann "
585 "E<lt>rotty@debian.orgE<gt>, for the Debian GNU/Linux system (but may be used "
586 "by others). It was subsequently revised by Bill Bumgarner "
587 "E<lt>bbum@mac.comE<gt> and further updated by Laszlo Boszormenyi "
588 "E<lt>gcs@debian.huE<gt> ."
589 msgstr ""