Sử dụng XML để đưa thông tin lên ứng dụng winform trong quản lý

17 735 1
Sử dụng XML để đưa thông tin lên ứng dụng  winform  trong quản lý

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Ngày nay việc sử dụng XML để đưa thông tin lên các website hay các ứng dụng winform ngày một nhiều

Báo Cáo XML Đề tài : “ Sử dụng XML để đưa thông tin lên ứng dụng winform trong quản Ngày nay việc sử dụng XML để đưa thông tin lên các website hay các ứng dụng winform ngày một nhiều , XML ngày một chiếm ưu thế khi là công cụ để chuyển tải thông tin lên các ứng dụng , đặc điểm là XML là các dạng file text nên dung lượng nhỏ ngọn ,đẽ dàng chuyển tải vì văn bản dưới dạng file text nên vượt qua bức tường lửa một cách dễ dàng . bài làm được xây dựng dựa trên cơ sở từ bảng dữ liệu truyền tải từ sql server Mô tả : bài làm mô tả quá trình sử dụng XML để hiển thị thông tin về chương trình quản sách đơn giản mục đích chính của bài là mô phỏng quá trình sử dụng XML để đưa thông tin thay cho sử dụng SQL server .chứ không đi sâu vào phân tích và thực hiện quá trình quản trong chương trình Mô tả : thiết kế Các bảng csdl trong quản sách gồm các bảng sau : Author .xml Publisher.xml Jobs .xml Stores.xml Titles.xml Quantri.xml Danh sách các thuộc tính và các phương thức 1 >Khai báo bảng author TT Tóm tắt Diễn giải Kiểu DL Phạm vi Ràng Buộc Ghi chú 1 Au_id Mã tác giả nvarchar(5) Protected Bắt buộc Khóa 2 Au_lname Họ Tên tác giả Varchar(50) Private 3 Au_fname Tên đầy đủ char(1) Private 4 Phone Điện thoại Char(12 private 5 address Địa chỉ Varchar(40) Private 6 City Thành phố Varchar(20) Private 7 state Bang Char(2) Private 8 zip Mã nước Char(5) Private 9 contract bit Private 2>bảng publisher TT Tóm tắt Diễn giải Kiểu DL Phạm vi Ràng Buộc Ghi chú 1 pu_id Mã nhà xuất bản char(4) Protected Bắt buộc Khóa 2 pu_name Tên nhà xuất bản Varchar(40) Private 3 city Thành phố Varchar(20) Private 4 state Bang Char(2) 5 country Đất nước Varchar(30) 3:Bảng jobs TT Tóm tắt Diễn giải Kiểu DL Phạm vi Ràng Buộc Ghi chú 1 Job_id Mã công việc Smallint Protected Bắt buộc Khóa 2 Job_desc Varchar(50) Private 3 Min_lvl Tinyint Private 4 Max Tinyint 4: bảng stores TT Tóm tắt Diễn giải Kiểu DL Phạm vi Ràng Buộc Ghi chú 1 stor_id Mã kho nvarchar(4) Protected Bắt buộc Khóa 2 Stor_name Tên kho Varchar(40) Private 3 Stor_address Địa chỉ Varchar(40) Private 4 City Thành phố Varchar(20) 5 state Bang Char(2) 6 Zip Mã nước Char(5) 5: Mô tả bảng title TT Tóm tắt Diễn giải Kiểu DL Phạm vi Ràng Buộc Ghi chú 1 Title_íd Mã sách nvarchar(6) Protected Bắt buộc Khóa 2 Title Tên sách Varchar(80) Private 3 Type Thể loại char(12) Private 4 Pub_id Mã nhà xuất bản Char(4) 5 price Giá sách Money 6 advance Mở rộng Money 7 royalty Int 8 Ytd_sale Int 9 Note Ghi trú Varchar(200) 10 pubdate Ngày xuât bản datetime 6: Mô tả chi tiết bảng quản trị Lưu giữ các thông tin về tác giả Cơ sở dữ liệu được nhập thông qua file XML Mô tả các bảng Jobs như sau : <?xml version="1.0" standalone="yes"?> <NewDataSet> <Table> <job_id>1</job_id> <job_desc>New Hire - Job not specified</job_desc> <min_lvl>10</min_lvl> <max_lvl>10</max_lvl> </Table> <Table> <job_id>2</job_id> <job_desc>Chief Executive Officer</job_desc> <min_lvl>200</min_lvl> <max_lvl>250</max_lvl> </Table> <Table> <job_id>3</job_id> <job_desc>Business Operations Manager</job_desc> <min_lvl>175</min_lvl> <max_lvl>225</max_lvl> </Table> <Table> <job_id>4</job_id> <job_desc>Chief Financial Officier</job_desc> <min_lvl>175</min_lvl> <max_lvl>250</max_lvl> </Table> <Table> <job_id>5</job_id> <job_desc>Publisher</job_desc> <min_lvl>150</min_lvl> <max_lvl>250</max_lvl> </Table> <Table> <job_id>6</job_id> <job_desc>Managing Editor</job_desc> <min_lvl>140</min_lvl> <max_lvl>225</max_lvl> </Table> <Table> <job_id>7</job_id> <job_desc>Marketing Manager</job_desc> <min_lvl>120</min_lvl> <max_lvl>200</max_lvl> </Table> <Table> <job_id>8</job_id> <job_desc>Public Relations Manager</job_desc> <min_lvl>100</min_lvl> <max_lvl>175</max_lvl> </Table> <Table> <job_id>9</job_id> <job_desc>Acquisitions Manager</job_desc> <min_lvl>75</min_lvl> <max_lvl>175</max_lvl> </Table> <Table> <job_id>10</job_id> <job_desc>Productions Manager</job_desc> <min_lvl>75</min_lvl> <max_lvl>165</max_lvl> </Table> <Table> <job_id>11</job_id> <job_desc>Operations Manager</job_desc> <min_lvl>75</min_lvl> <max_lvl>150</max_lvl> </Table> <Table> <job_id>12</job_id> <job_desc>Editor</job_desc> <min_lvl>25</min_lvl> <max_lvl>100</max_lvl> </Table> <Table> <job_id>13</job_id> <job_desc>Sales Representative</job_desc> <min_lvl>25</min_lvl> <max_lvl>100</max_lvl> </Table> <Table> <job_id>14</job_id> <job_desc>Designer</job_desc> <min_lvl>25</min_lvl> <max_lvl>100</max_lvl> </Table> </NewDataSet> Mô tả bảng stores thông qua XML <?xml version="1.0" standalone="yes"?> <NewDataSet> <Table> <stor_id>6380</stor_id> <stor_name>Eric the Read Books</stor_name> <stor_address>788 Catamaugus Ave.</stor_address> <city>Seattle</city> <state>WA</state> <zip>98056</zip> </Table> <Table> <stor_id>7066</stor_id> <stor_name>Barnum's</stor_name> <stor_address>567 Pasadena Ave.</stor_address> <city>Tustin</city> <state>CA</state> <zip>92789</zip> </Table> <Table> <stor_id>7067</stor_id> <stor_name>News &amp; Brews</stor_name> <stor_address>577 First St.</stor_address> <city>Los Gatos</city> <state>CA</state> <zip>96745</zip> </Table> <Table> <stor_id>7131</stor_id> <stor_name>Doc-U-Mat: Quality Laundry and Books</stor_name> <stor_address>24-A Avogadro Way</stor_address> <city>Remulade</city> <state>WA</state> <zip>98014</zip> </Table> <Table> <stor_id>7896</stor_id> <stor_name>Fricative Bookshop</stor_name> <stor_address>89 Madison St.</stor_address> <city>Fremont</city> <state>CA</state> <zip>90019</zip> </Table> <Table> <stor_id>8042</stor_id> <stor_name>Bookbeat</stor_name> <stor_address>679 Carson St.</stor_address> <city>Portland</city> <state>OR</state> <zip>89076</zip> </Table> </NewDataSet> Mô tả bảng title.xml <?xml version="1.0" standalone="yes"?> <NewDataSet> <Table> <title_id>BU1032</title_id> <title>The Busy Executive's Database Guide</title> <type>business </type> <pub_id>1389</pub_id> <price>19.9900</price> <advance>5000.0000</advance> <royalty>10</royalty> <ytd_sales>4095</ytd_sales> <notes>An overview of available database systems with emphasis on common business applications. Illustrated.</notes> <pubdate>1991-06-12T00:00:00+07:00</pubdate> </Table> <Table> <title_id>BU1111</title_id> <title>Cooking with Computers: Surreptitious Balance Sheets</title> <type>business </type> <pub_id>1389</pub_id> <price>11.9500</price> <advance>5000.0000</advance> <royalty>10</royalty> <ytd_sales>3876</ytd_sales> <notes>Helpful hints on how to use your electronic resources to the best advantage.</notes> <pubdate>1991-06-09T00:00:00+07:00</pubdate> </Table> <Table> <title_id>BU2075</title_id> <title>You Can Combat Computer Stress!</title> <type>business </type> <pub_id>0736</pub_id> <price>2.9900</price> <advance>10125.0000</advance> <royalty>24</royalty> <ytd_sales>18722</ytd_sales> <notes>The latest medical and psychological techniques for living with the electronic office. Easy-to-understand explanations.</notes> <pubdate>1991-06-30T00:00:00+07:00</pubdate> </Table> <Table> <title_id>BU7832</title_id> <title>Straight Talk About Computers</title> <type>business </type> <pub_id>1389</pub_id> <price>19.9900</price> <advance>5000.0000</advance> <royalty>10</royalty> <ytd_sales>4095</ytd_sales> <notes>Annotated analysis of what computers can do for you: a no-hype guide for the critical user.</notes> <pubdate>1991-06-22T00:00:00+07:00</pubdate> </Table> <Table> <title_id>MC2222</title_id> <title>Silicon Valley Gastronomic Treats</title> <type>mod_cook </type> <pub_id>0877</pub_id> <price>19.9900</price> <advance>0.0000</advance> <royalty>12</royalty> <ytd_sales>2032</ytd_sales> <notes>Favorite recipes for quick, easy, and elegant meals.</notes> <pubdate>1991-06-09T00:00:00+07:00</pubdate> </Table> <Table> <title_id>MC3021</title_id> <title>The Gourmet Microwave</title> <type>mod_cook </type> <pub_id>0877</pub_id> <price>2.9900</price> <advance>15000.0000</advance> <royalty>24</royalty> <ytd_sales>22246</ytd_sales> <notes>Traditional French gourmet recipes adapted for modern microwave cooking.</notes> <pubdate>1991-06-18T00:00:00+07:00</pubdate> </Table> <Table> <title_id>MC3026</title_id> <title>The Psychology of Computer Cooking</title> <type>UNDECIDED </type> <pub_id>0877</pub_id> <pubdate>2004-12-13T16:11:36.553+07:00</pubdate> </Table> <Table> <title_id>PC1035</title_id> <title>But Is It User Friendly?</title> <type>popular_comp</type> <pub_id>1389</pub_id> <price>22.9500</price> <advance>7000.0000</advance> <royalty>16</royalty> <ytd_sales>8780</ytd_sales> <notes>A survey of software for the naive user, focusing on the 'friendliness' of each.</notes> <pubdate>1991-06-30T00:00:00+07:00</pubdate> </Table> <Table> <title_id>PC8888</title_id> <title>Secrets of Silicon Valley</title> <type>popular_comp</type> <pub_id>1389</pub_id> <price>20.0000</price> <advance>8000.0000</advance> <royalty>10</royalty> <ytd_sales>4095</ytd_sales> <notes>Muckraking reporting on the world's largest computer hardware and software manufacturers.</notes> <pubdate>1994-06-12T00:00:00+07:00</pubdate> </Table> <Table> <title_id>PC9999</title_id> <title>Net Etiquette</title> <type>popular_comp</type> <pub_id>1389</pub_id> <notes>A must-read for computer conferencing.</notes> <pubdate>2004-12-13T16:11:36.553+07:00</pubdate> </Table> <Table> <title_id>PS1372</title_id> <title>Computer Phobic AND Non-Phobic Individuals: Behavior Variations</title> <type>psychology </type> <pub_id>0877</pub_id> <price>21.5900</price> <advance>7000.0000</advance> <royalty>10</royalty> <ytd_sales>375</ytd_sales> [...]... sách : hiển thị danh mục sách Thông tin sản phẩm : Giới thiệu về sản phẩm Trong bài tập chương trình đã đáp ứng được yêu cầu của cô giáo là nhập dữ liệu và hiển thị thông tin về danh sách dữ liệu được nhập từ tài liệu XML còn phẩn ghi và cập nhật thêm về cơ sở dữ liệu thì chúng em chưa hoàn thành được rất mong nhận được sự chỉ bảo của cô và sự góp ý của các bạn trong lớp để bài làm của nhóm được hoàn... on how to make authentic Japanese sushi in your spare time. 1991-06-12T00:00:00+07:00 Bảng publisher .xml , bảng authors .xml và bảng quantri .xml nhập dữ liệu tương tự Thiết kế giao diện chính cho ứng dụng Giao diện chính gồm File ,: Exit : Thoát khỏi chương trình Hiển thị gồm : Chức năng hiển thị các danh mục theo chỉ mục Danh mục tác giả : hiển thị... psychology 0736 10.9500 2275.0000 12 2045 Carefully researched study of the effects of strong emotions on the body Metabolic charts included. 1991-06-15T00:00:00+07:00 PS2106 Life Without Fear psychology... Emotional Security: A New Algorithm psychology 0736 7.9900 4000.0000 10 3336 Protecting yourself and your loved ones from undue emotional stress in the modern world Use of computer and nutritional aids emphasized. 1991-06-12T00:00:00+07:00 . Báo Cáo XML Đề tài : “ Sử dụng XML để đưa thông tin lên ứng dụng winform trong quản lý “ Ngày nay việc sử dụng XML để đưa thông tin lên các website. trình sử dụng XML để hiển thị thông tin về chương trình quản lý sách đơn giản mục đích chính của bài là mô phỏng quá trình sử dụng XML để đưa thông tin

Ngày đăng: 13/04/2013, 11:12

Từ khóa liên quan

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan