📄 toolset_guide.po
字号:
#: index.docbook:328msgid "You may even embed <literal>SchemaExport</literal> in your application:"msgstr """Puedes incluso encajar <literal>SchemaExport</literal> en tu aplicació""n:"#: index.docbook:332msgid """<![CDATA[Configuration cfg = ....;\n""new SchemaExport(cfg).create(false, true);]]>"msgstr """<![CDATA[Configuration cfg = ....;\n""new SchemaExport(cfg).create(false, true);]]>"#: index.docbook:337msgid "Properties"msgstr "Propiedades"#: index.docbook:339msgid "Database properties may be specified"msgstr "Las propiedades de base de datos pueden especificarse"#: index.docbook:345msgid """as system properties with <literal>-D</literal><emphasis><property></""emphasis>"msgstr """como propiedades de sistema con <literal>-D</literal><emphasis><""property></emphasis>"#: index.docbook:348msgid "in <literal>hibernate.properties</literal>"msgstr "en <literal>hibernate.properties</literal>"#: index.docbook:351msgid "in a named properties file with <literal>--properties</literal>"msgstr """en un fichero de propiedades mencionado con <literal>--properties</literal>"#: index.docbook:355msgid "The needed properties are:"msgstr "Las propiedades necesarias son:"#: index.docbook:360msgid "SchemaExport Connection Properties"msgstr "Propiedades de Conexión de SchemaExport"#: index.docbook:366msgid "Property Name"msgstr "Nombre de Propiedad"#: index.docbook:372msgid "hibernate.connection.driver_class"msgstr "hibernate.connection.driver_class"#: index.docbook:373msgid "jdbc driver class"msgstr "clase del driver jdbc"#: index.docbook:376msgid "hibernate.connection.url"msgstr "hibernate.connection.url"#: index.docbook:377msgid "jdbc url"msgstr "url de jdbc"#: index.docbook:380msgid "hibernate.connection.username"msgstr "hibernate.connection.username"#: index.docbook:381msgid "database user"msgstr "usuario de base de datos"#: index.docbook:384msgid "hibernate.connection.password"msgstr "hibernate.connection.password"#: index.docbook:385msgid "user password"msgstr "contraseña de usuario"#: index.docbook:388msgid "hibernate.dialect"msgstr "hibernate.dialect"#: index.docbook:389msgid "dialect"msgstr "dialecto"#: index.docbook:398msgid "Using Ant"msgstr "Usando Ant"#: index.docbook:400msgid """You can call <literal>SchemaExport</literal> from your Ant build script:"msgstr """Puedes llamar a <literal>SchemaExport</literal> desde tu guión de ""construcción de Ant:"#: index.docbook:404msgid """<![CDATA[<target name=\"schemaexport\">\n"" <taskdef name=\"schemaexport\"\n"" classname=\"org.hibernate.tool.hbm2ddl.SchemaExportTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemaexport\n"" properties=\"hibernate.properties\"\n"" quiet=\"no\"\n"" text=\"no\"\n"" drop=\"no\"\n"" delimiter=\";\"\n"" output=\"schema-export.sql\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml\"/>\n"" </fileset>\n"" </schemaexport>\n""</target>]]>"msgstr """<![CDATA[<target name=\"schemaexport\">\n"" <taskdef name=\"schemaexport\"\n"" classname=\"org.hibernate.tool.hbm2ddl.SchemaExportTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemaexport\n"" properties=\"hibernate.properties\"\n"" quiet=\"no\"\n"" text=\"no\"\n"" drop=\"no\"\n"" delimiter=\";\"\n"" output=\"schema-export.sql\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml\"/>\n"" </fileset>\n"" </schemaexport>\n""</target>]]>"#: index.docbook:409msgid "Incremental schema updates"msgstr "Actualizaciones incrementales de esquema"#: index.docbook:411msgid """The <literal>SchemaUpdate</literal> tool will update an existing schema with ""\"incremental\" changes. Note that <literal>SchemaUpdate</literal> depends ""heavily upon the JDBC metadata API, so it will not work with all JDBC ""drivers."msgstr """La herramienta <literal>SchemaUpdate</literal> actualizará un esquema ""existente con cambios \"incrementales\". Nota que <literal>SchemaUpdate</""literal> depende fuertemente de la API de metadatos de JDBC, de modo que no ""funcionará con todos los drivers JDBC."#: index.docbook:417msgid """<literal>java -cp </literal><emphasis>hibernate_classpaths</emphasis> ""<literal>org.hibernate.tool.hbm2ddl.SchemaUpdate</literal> <emphasis>options ""mapping_files</emphasis>"msgstr """<literal>java -cp </literal><emphasis>classpaths_de_hibernate</emphasis> ""<literal>org.hibernate.tool.hbm2ddl.SchemaUpdate</literal> ""<emphasis>opciones ficheros_de_mapeo</emphasis>"#: index.docbook:423msgid "<literal>SchemaUpdate</literal> Command Line Options"msgstr """Opciones de Línea de Comandos de <literal>SchemaUpdate</literal>"#: index.docbook:440msgid "don't export the script to the database"msgstr "don't export the script to the database"#: index.docbook:452, index.docbook:513msgid "specify a <literal>.cfg.xml</literal> file"msgstr "specify a <literal>.cfg.xml</literal> file"#: index.docbook:458msgid "You may embed <literal>SchemaUpdate</literal> in your application:"msgstr """Puedes encajar <literal>SchemaUpdate</literal> en tu aplicación:"#: index.docbook:462msgid """<![CDATA[Configuration cfg = ....;\n""new SchemaUpdate(cfg).execute(false);]]>"msgstr """<![CDATA[Configuration cfg = ....;\n""new SchemaUpdate(cfg).execute(false);]]>"#: index.docbook:467msgid "Using Ant for incremental schema updates"msgstr "Usando Ant para actualizaciones incrementales de esquema"#: index.docbook:469msgid "You can call <literal>SchemaUpdate</literal> from the Ant script:"msgstr """Puedes llamar a <literal>SchemaUpdate</literal> desde el guión de Ant:"#: index.docbook:473msgid """<![CDATA[<target name=\"schemaupdate\">\n"" <taskdef name=\"schemaupdate\"\n"" classname=\"org.hibernate.tool.hbm2ddl.SchemaUpdateTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemaupdate\n"" properties=\"hibernate.properties\"\n"" quiet=\"no\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml\"/>\n"" </fileset>\n"" </schemaupdate>\n""</target>]]>"msgstr """<![CDATA[<target name=\"schemaupdate\">\n"" <taskdef name=\"schemaupdate\"\n"" classname=\"org.hibernate.tool.hbm2ddl.SchemaUpdateTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemaupdate\n"" properties=\"hibernate.properties\"\n"" quiet=\"no\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml\"/>\n"" </fileset>\n"" </schemaupdate>\n""</target>]]>"#: index.docbook:478msgid "Schema validation"msgstr "Schema validation"#: index.docbook:480msgid """The <literal>SchemaValidator</literal> tool will validate that the existing ""database schema \"matches\" your mapping documents. Note that ""<literal>SchemaValidator</literal> depends heavily upon the JDBC metadata ""API, so it will not work with all JDBC drivers. This tool is extremely ""useful for testing."msgstr """The <literal>SchemaValidator</literal> tool will validate that the existing ""database schema \"matches\" your mapping documents. Note that ""<literal>SchemaValidator</literal> depends heavily upon the JDBC metadata ""API, so it will not work with all JDBC drivers. This tool is extremely ""useful for testing."#: index.docbook:486msgid """<literal>java -cp </literal><emphasis>hibernate_classpaths</emphasis> ""<literal>org.hibernate.tool.hbm2ddl.SchemaValidator</literal> ""<emphasis>options mapping_files</emphasis>"msgstr """<literal>java -cp </literal><emphasis>hibernate_classpaths</emphasis> ""<literal>org.hibernate.tool.hbm2ddl.SchemaValidator</literal> ""<emphasis>options mapping_files</emphasis>"#: index.docbook:492msgid "<literal>SchemaValidator</literal> Command Line Options"msgstr "<literal>SchemaValidator</literal> Command Line Options"#: index.docbook:519msgid "You may embed <literal>SchemaValidator</literal> in your application:"msgstr "You may embed <literal>SchemaValidator</literal> in your application:"#: index.docbook:523msgid """<![CDATA[Configuration cfg = ....;\n""new SchemaValidator(cfg).validate();]]>"msgstr """<![CDATA[Configuration cfg = ....;\n"" new SchemaValidator""(cfg).validate();]]>"#: index.docbook:528msgid "Using Ant for schema validation"msgstr "Using Ant for schema validation"#: index.docbook:530msgid "You can call <literal>SchemaValidator</literal> from the Ant script:"msgstr "You can call <literal>SchemaValidator</literal> from the Ant script:"#: index.docbook:534msgid """<![CDATA[<target name=\"schemavalidate\">\n"" <taskdef name=\"schemavalidator\"\n"" classname=\"org.hibernate.tool.hbm2ddl.SchemaValidatorTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemavalidator\n"" properties=\"hibernate.properties\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml\"/>\n"" </fileset>\n"" </schemavalidator>\n""</target>]]>"msgstr """<![CDATA[<target name=\"schemavalidate\">\n"" <taskdef name=\"schemavalidator\"\n"" classname=\"org.hibernate.tool.""hbm2ddl.SchemaValidatorTask\"\n"" classpathref=\"class.path\"/>\n"" \n"" <schemavalidator\n"" properties=\"hibernate.""properties\">\n"" <fileset dir=\"src\">\n"" <include name=\"**/*.hbm.xml""\"/>\n"" </fileset>\n"" </schemavalidator>\n"" </target>]]>"msgid "ROLES_OF_TRANSLATORS"msgstr "<!--TRANS:ROLES_OF_TRANSLATORS-->"msgid "CREDIT_FOR_TRANSLATORS"msgstr "<!--TRANS:CREDIT_FOR_TRANSLATORS-->"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -