All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.h2.res.javadoc.properties Maven / Gradle / Ivy

The newest version!
org.h2.jmx.DatabaseInfoMBean=Information and management operations for the given database.
org.h2.jmx.DatabaseInfoMBean.getCacheSize=The current cache size in KB.
org.h2.jmx.DatabaseInfoMBean.getCacheSizeMax=The maximum cache size in KB.
org.h2.jmx.DatabaseInfoMBean.getFileReadCount=The file read count since the database was opened.
org.h2.jmx.DatabaseInfoMBean.getFileSize=The database file size in KB.
org.h2.jmx.DatabaseInfoMBean.getFileWriteCount=The number of write operations since the database was opened.
org.h2.jmx.DatabaseInfoMBean.getMode=The database compatibility mode (REGULAR if no compatibility mode is\n used).
org.h2.jmx.DatabaseInfoMBean.getTraceLevel=The trace level (0 disabled, 1 error, 2 info, 3 debug).
org.h2.jmx.DatabaseInfoMBean.getVersion=The database version.
org.h2.jmx.DatabaseInfoMBean.isExclusive=Is the database open in exclusive mode?
org.h2.jmx.DatabaseInfoMBean.isReadOnly=Is the database read-only?
org.h2.jmx.DatabaseInfoMBean.listSessions=List sessions, including the queries that are in\n progress, and locked tables.
org.h2.jmx.DatabaseInfoMBean.listSettings=List the database settings.
org.h2.tools.Backup=Creates a backup of a database.\n\n This tool copies all database files. The database must be closed before using\n this tool. To create a backup while the database is in use, run the BACKUP\n SQL statement. In an emergency, for example if the application is not\n responding, creating a backup using the Backup tool is possible by using the\n quiet mode. However, if the database is changed while the backup is running\n in quiet mode, the backup could be corrupt.
org.h2.tools.Backup.main=Options are case sensitive.\nSupported options are\:[-help] or [-?]Print the list of options\n[-file ]  The target file name (default\: backup.zip)\n[-dir ]        The source directory (default\: .)\n[-db ]    Source database; not required if there is only one\n[-quiet]            Do not print progress information
org.h2.tools.ChangeFileEncryption=Allows changing the database file encryption password or algorithm.\n\n This tool can not be used to change a password of a user.\n The database must be closed before using this tool.
org.h2.tools.ChangeFileEncryption.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-cipher type]    The encryption type (AES)\n[-dir ]      The database directory (default\: .)\n[-db ]  Database name (all databases if not set)\n[-decrypt ]  The decryption password (if not set\: not yet encrypted)\n[-encrypt ]  The encryption password (if not set\: do not encrypt)\n[-quiet]          Do not print progress information
org.h2.tools.Console=Starts the H2 Console (web-) server, as well as the TCP and PG server.
org.h2.tools.Console.main=When running without options, -tcp, -web, -browser and -pg are started.\n\n Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-url]           Start a browser and connect to this URL\n[-driver]        Used together with -url\: the driver\n[-user]          Used together with -url\: the user name\n[-password]      Used together with -url\: the password\n[-web]           Start the web server with the H2 Console\n[-tool]          Start the icon or window that allows to start a browser\n[-browser]       Start a browser connecting to the web server\n[-tcp]           Start the TCP server\n[-pg]            Start the PG server\nFor each Server, additional options are available;\n for details, see the Server tool.\n If a service can not be started, the program\n terminates with an exit code of 1.
org.h2.tools.ConvertTraceFile=Converts a .trace.db file to a SQL script and Java source code.\n\n SQL statement statistics are listed as well.
org.h2.tools.ConvertTraceFile.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-traceFile ]  The trace file name (default\: test.trace.db)\n[-script ]     The script file name (default\: test.sql)\n[-javaClass ]  The Java directory and class file name (default\: Test)
org.h2.tools.CreateCluster=Creates a cluster from a stand-alone database.\n\n Copies a database to another location if required.
org.h2.tools.CreateCluster.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-urlSource ""]  The database URL of the source database (jdbc\:h2\:...)\n[-urlTarget ""]  The database URL of the target database (jdbc\:h2\:...)\n[-user ]        The user name (default\: sa)\n[-password ]     The password\n[-serverList ]  The comma separated list of host names or IP addresses
org.h2.tools.DeleteDbFiles=Deletes all files belonging to a database.\n\n The database must be closed before calling this tool.
org.h2.tools.DeleteDbFiles.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-dir ]      The directory (default\: .)\n[-db ]  The database name\n[-quiet]          Do not print progress information
org.h2.tools.Recover=Helps recovering a corrupted database.
org.h2.tools.Recover.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-dir ]       The directory (default\: .)\n[-db ]   The database name (all databases if not set)\n[-trace]           Print additional trace information\n[-transactionLog]  Print the transaction log\nEncrypted databases need to be decrypted first.
org.h2.tools.Restore=Restores a H2 database by extracting the database files from a .zip file.
org.h2.tools.Restore.main=Options are case sensitive. Supported options\nSupported options[-help] or [-?]Print the list of options\n[-file ]  The source file name (default\: backup.zip)\n[-dir ]        The target directory (default\: .)\n[-db ]    The target database name (as stored if not set)\n[-quiet]            Do not print progress information
org.h2.tools.RunScript=Runs a SQL script against a database.
org.h2.tools.RunScript.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-url ""]      The database URL (jdbc\:...)\n[-user ]      The user name (default\: sa)\n[-password ]   The password\n[-script ]    The script file to run (default\: backup.sql)\n[-driver ]   The JDBC driver class to use (not required in most cases)\n[-showResults]      Show the statements and the results of queries\n[-checkResults]     Check if the query results match the expected results\n[-continueOnError]  Continue even if the script contains errors\n[-options ...]      RUNSCRIPT options (embedded H2; -*Results not supported)
org.h2.tools.Script=Creates a SQL script file by extracting the schema and data of a database.
org.h2.tools.Script.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-url ""]     The database URL (jdbc\:...)\n[-user ]     The user name (default\: sa)\n[-password ]  The password\n[-script ]   The target script file name (default\: backup.sql)\n[-options ...]     A list of options (only for embedded H2, see SCRIPT)\n[-quiet]           Do not print progress information
org.h2.tools.Server=Starts the H2 Console (web-) server, TCP, and PG server.
org.h2.tools.Server.main=When running without options, -tcp, -web, -browser and -pg are started.\n\n Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-web]                  Start the web server with the H2 Console\n[-webAllowOthers]       Allow other computers to connect - see below\n[-webExternalNames]       The comma-separated list of external names and IP addresses of this server, used together with -webAllowOthers\n[-webDaemon]            Use a daemon thread\n[-webPort ]       The port (default\: 8082)\n[-webSSL]               Use encrypted (HTTPS) connections\n[-webAdminPassword]     Password of DB Console administrator\n[-browser]              Start a browser connecting to the web server\n[-tcp]                  Start the TCP server\n[-tcpAllowOthers]       Allow other computers to connect - see below\n[-tcpDaemon]            Use a daemon thread\n[-tcpPort ]       The port (default\: 9092)\n[-tcpSSL]               Use encrypted (SSL) connections\n[-tcpPassword ]    The password for shutting down a TCP server\n[-tcpShutdown ""]  Stop the TCP server; example\: tcp\://localhost\n[-tcpShutdownForce]     Do not wait until all connections are closed\n[-pg]                   Start the PG server\n[-pgAllowOthers]        Allow other computers to connect - see below\n[-pgDaemon]             Use a daemon thread\n[-pgPort ]        The port (default\: 5435)\n[-properties ""]   Server properties (default\: ~, disable\: null)\n[-baseDir ]        The base directory for H2 databases (all servers)\n[-ifExists]             Only existing databases may be opened (all servers)\n[-ifNotExists]          Databases are created when accessed\n[-trace]                Print additional trace information (all servers)\n[-key  ]      Allows to map a database name to another (all servers)\nThe options -xAllowOthers are potentially risky.\n\n For details, see Advanced Topics / Protection against Remote Access.
org.h2.tools.Shell=Interactive command line tool to access a database using JDBC.
org.h2.tools.Shell.main=Options are case sensitive.\nSupported options[-help] or [-?]Print the list of options\n[-url ""]         The database URL (jdbc\:h2\:...)\n[-user ]         The user name\n[-password ]      The password\n[-driver ]      The JDBC driver class to use (not required in most cases)\n[-sql ""]  Execute the SQL statements and exit\n[-properties ""]  Load the server properties from this directory\nIf special characters don't work as expected, you may need to use\n -Dfile.encoding\=UTF-8 (Mac OS X) or CP850 (Windows).




© 2015 - 2024 Weber Informatics LLC | Privacy Policy