在開(kāi)發(fā)過(guò)程中常常要用到多種數(shù)據(jù)庫(kù)類型,比如項(xiàng)目可能需要支持Oracle, MySQL, MSSQL Server, Derby等等。已經(jīng)有很多各種各樣的小工具可以幫助開(kāi)發(fā)人員進(jìn)行數(shù)據(jù)庫(kù)之間的schema、data轉(zhuǎn)換與同步,DdlUtils 就是其中之一。它可以結(jié)合Ant或者程序代碼進(jìn)行數(shù)據(jù)庫(kù)schema/data和xml文件的相互轉(zhuǎn)換。
例如,項(xiàng)目開(kāi)發(fā)支持的是MySQL,而為了單元測(cè)試的整潔和方便,開(kāi)發(fā)人員決定使用Derby來(lái)支持單元測(cè)試。DdlUtils就可以把schema和數(shù)據(jù)從MySQL中導(dǎo)出,變成xml文件,然后根據(jù)需要導(dǎo)入到Derby中;反之亦可。顯然,這些導(dǎo)出的xml文件也是對(duì)于數(shù)據(jù)庫(kù)的一個(gè)很好的備份。
-
下面是apache ddlutils官網(wǎng)給出的一個(gè)xml的例子,table和column標(biāo)簽里面支持的child和attribute遠(yuǎn)不止示例中的這些。
1.<?xml version="1.0"?>
2.<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database.dtd"> 3.<database name="testdb"> 4. <table name="author"> 5. <column name="author_id" 6. type="INTEGER" 7. primaryKey="true" 8. required="true"/> 9. <column name="name" 10. type="VARCHAR" 11. size="50" 12. required="true"/> 13. <column name="organisation" 14. type="VARCHAR" 15. size="50" 16. required="false"/> 17. </table> 18.
19. <table name="book"> 20. <column name="book_id" 21. type="INTEGER" 22. required="true" 23. primaryKey="true" 24. autoIncrement="true"/> 25. <column name="isbn" 26. type="VARCHAR" 27. size="15" 28. required="true"/> 29. <column name="author_id" 30. type="INTEGER" 31. required="true"/> 32. <column name="title" 33. type="VARCHAR" 34. size="255" 35. defaultValue="N/A" 36. required="true"/> 37.
38. <foreign-key foreignTable="author"> 39. <reference local="author_id" foreign="author_id"/> 40. </foreign-key> 41.
42. <index name="book_isbn"> 43. <index-column name="isbn"/> 44. </index> 45. </table> 46.</database>
DdlUtils包含了3個(gè)Ant Task,分別是databaseToDdl, ddlToDatabase以及dumpMetadata。
使用ddlToDatabase的示例:
這個(gè)Ant任務(wù)創(chuàng)建了一個(gè)PostgreSQL數(shù)據(jù)庫(kù),把xml中定義的schema和data導(dǎo)入到數(shù)據(jù)庫(kù)中。
1.<path id="runtime-classpath">
2. <fileset dir="lib"> 3. <include name="**/*.jar"/> 4. <include name="**/*.zip"/> 5.
6. </fileset> 7.</path> 8.
9.
10.<target name="database-setup" 11. description="Creates the database structure and inserts data into the database"> 12. <taskdef name="ddlToDatabase" 13. classname="org.apache.ddlutils.task.DdlToDatabaseTask"> 14. <classpath refid="runtime-classpath"/> 15. </taskdef> 16.
17. <ddlToDatabase> 18. <database url="jdbc:postgresql://localhost/test" 19. driverClassName="org.postgresql.Driver" 20. username="someuser" 21. password="somepassword"/> 22. <fileset dir="src/schema"> 23. <include name="project-schema.xml"/> 24. </fileset> 25.
26. <createDatabase failonerror="false"/> 27.
28. <writeSchemaToDatabase/> 29. <writeDataToDatabase datafile="src/data/data.xml"/> 30. </ddlToDatabase> 31.</target>
使用databaseToDdl的示例:
這個(gè)Ant任務(wù)把derby數(shù)據(jù)庫(kù)中的schema和data導(dǎo)出到xml文件中。
1.<path id="runtime-classpath">
2. <fileset dir="lib"> 3. <include name="**/*.jar"/> 4.
5. <include name="**/*.zip"/> 6. </fileset> 7.</path> 8.
9.<target name="database-dump" description="Dumps the database structure"> 10. <taskdef name="databaseToDdl" 11. classname="org.apache.ddlutils.task.DatabaseToDdlTask"> 12. <classpath refid="runtime-classpath"/> 13.
14. </taskdef> 15. <databaseToDdl modelName="MyModel"> 16. <database url="jdbc:derby:ddlutils" 17. driverClassName="org.apache.derby.jdbc.EmbeddedDriver" 18. username="" 19. password=""/> 20.
21. <writeSchemaToFile outputFile="db-schema.xml"/> 22. <writeDataToFile outputFile="data.xml"/> 23. </databaseToDdl> 24.
25.</target>
本文出自:億恩科技【mszdt.com】
服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]
|