Click here to Skip to main content
Licence 
First Posted 18 Aug 2005
Views 42,802
Bookmarked 25 times

Writing SQL Server Database tables description into Word Document

By | 18 Aug 2005 | Article
Window application generates the document with Sql Server database tables
 
Part of The SQL Zone sponsored by
See Also

Introduction

This tool a simple Windows application which take path of word document where would like you to create and Microsoft Sql Server Database name.

This application makes use of Word Application Library "Microsoft Office 10.0 Object Library" and "Microsoft Word 10.0 Object Library" to create the document.

How it Works:

First it will try to open the database, it uses SqlConnection class of System.Data namespace,then SqlCommand,SqlDataAdapter classes to get the data from SqlServer database.

//Connection string

string connectionString = "Integrated Security=SSPI;Server={ServerName};Persist Security Info=False;Initial Catalog={DatabaseName};

//open the connection

SqlConnection sqlCon = new SqlConnection(connectionString);

sqlCon.Open();

After that construct the SqlCommand ,SqlDataAdpater class objects

//set the command text

SqlCommand command = new SqlCommand("SELECT Name, ID FROM sysObjects WHERE sysObjects.Type = 'U'",sqlCon);

command.CommandType = CommandType.Text;

//fill the adapter

SqlDataAdapter cadapter = new SqlDataAdapter(command);

DataSet cdataSet = new DataSet();

cadapter.Fill(cdataSet);

To get the database tables information from Database we use - following query:

"SELECT Name, ID FROM sysObjects WHERE sysObjects.Type = 'U'"

After fetching the database tables from DB, to get the columns descriptions associated with DB Table - uses following Query:

 SELECT sysColumns.Name AS ColumnName," +

"sysTypes.name AS DataType, "+

"sysColumns.Length AS Length, " +

"sysColumns.Status AS Status " +

"FROM sysColumns, sysTypes " +

"WHERE sysColumns.id = " + {table_name}+

" AND sysColumns.usertype = sysTypes.usertype";

Costruct the column information and Make Word Table format and write into the document.

And close the database connection

How to use the Word,Document classes:

Add the following references -

----  Microsoft Office 10.0 Object Library

----  Microsoft Word 10.0 Object Library

Word._Application word = null;

Word._Document doc = null;

doc = word.Documents.Add(ref missing,ref missing,ref missing, ref missing);

doc.SaveAs(ref file,ref missing,ref missing,ref missing,ref missing,ref missing,

                ref missing,ref missing,ref missing,ref missing,ref missing,ref missing,

                ref missing,ref missing,ref missing,ref missing);

doc = word.Documents.Open(ref file,ref missing,ref missing,ref missing,ref missing,

                                       ref missing, ref missing, ref missing, ref missing, ref missing,

                                       ref missing, ref falseValue, ref missing,ref missing,ref missing);

doc.Activate();

 

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

satya.rapelly

Web Developer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalfree database documentation tool PinmemberNSPatel3818:18 27 Apr '11  
GeneralMy vote of 1 PinmemberBABABIKHIAL21:19 21 Feb '09  
Questionwhy? Pinmemberweiquan_wang2:39 27 Feb '07  
AnswerRe: why? PinmemberLokanatha Reddy0:01 23 Mar '07  
GeneralSQL 2005 Get list tables in all databases Pinmemberitmagistr3:49 13 Feb '07  
Generalcode nt functional PinmemberNishant__Rai2:23 8 Jun '06  
GeneralRe: code nt functional Pinmemberjiugarte Brasil5:59 27 Feb '07  
GeneralIts a bit of a mess Pinmemberpaulb15:28 18 Aug '05  
GeneralRe: Its a bit of a mess PinmemberDanila Korablin16:56 18 Aug '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 18 Aug 2005
Article Copyright 2005 by satya.rapelly
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid