Click here to Skip to main content
15,898,373 members
Home / Discussions / C#
   

C#

 
GeneralRe: Inheritance Qusestion Pin
Christian Graus13-May-08 23:20
protectorChristian Graus13-May-08 23:20 
GeneralRe: Inheritance Qusestion Pin
Harvey Saayman13-May-08 23:25
Harvey Saayman13-May-08 23:25 
GeneralRe: Inheritance Qusestion Pin
Christian Graus14-May-08 0:00
protectorChristian Graus14-May-08 0:00 
QuestionTable's definition... Pin
Adeel Chaudhry13-May-08 22:32
Adeel Chaudhry13-May-08 22:32 
AnswerRe: Table's definition... Pin
dan!sh 13-May-08 22:48
professional dan!sh 13-May-08 22:48 
GeneralRe: Table's definition... Pin
Adeel Chaudhry13-May-08 23:49
Adeel Chaudhry13-May-08 23:49 
GeneralRe: Table's definition... Pin
dan!sh 14-May-08 0:03
professional dan!sh 14-May-08 0:03 
AnswerRe: Table's definition... Pin
sunspeed14-May-08 3:06
sunspeed14-May-08 3:06 
The Connection object provides you the "GetSchema()" method, which returns a DataTable filled with schema informations.
You have to specifiy what information you want in parameters of the method.

Example:

<br />
DataTable _indicesSchema = null;<br />
using (OleDbConnection connection = new OleDbConnection("Provider=SQLOLEDB;Password=******;Persist Security Info=True;User ID=sa;Initial Catalog=*****;Data Source=*******"))<br />
			<br />
					connection.Open();<br />
<br />
					_indicesSchema = connection.GetSchema("Indexes", new string[] { null, null, null, null });<br />
<br />
					connection.Close();<br />
			<br />
			}<br />


Hope was helpfull

Tiefe Brunnen muss man graben wenn man klares Wasser will,
tiefe Wasser sind nicht still.

AnswerRe: Table's definition... Pin
Pete O'Hanlon14-May-08 3:07
mvePete O'Hanlon14-May-08 3:07 
QuestionExport data from gridview to csv file Pin
gckumar13-May-08 21:49
gckumar13-May-08 21:49 
AnswerRe: Export data from gridview to csv file [modified] Pin
dan!sh 13-May-08 22:15
professional dan!sh 13-May-08 22:15 
AnswerRe: Export data from gridview to csv file Pin
ctlqt1213-May-08 22:23
ctlqt1213-May-08 22:23 
QuestionImages Pin
senthilsstil13-May-08 21:14
senthilsstil13-May-08 21:14 
AnswerRe: Images Pin
Christian Graus13-May-08 21:19
protectorChristian Graus13-May-08 21:19 
GeneralRe: Images Pin
senthilsstil13-May-08 21:25
senthilsstil13-May-08 21:25 
GeneralRe: Images Pin
Christian Graus13-May-08 21:30
protectorChristian Graus13-May-08 21:30 
GeneralRe: Images Pin
dan!sh 13-May-08 21:34
professional dan!sh 13-May-08 21:34 
AnswerRe: Images Pin
leckey14-May-08 3:05
leckey14-May-08 3:05 
QuestionDrag&Drop under Vista Pin
baerten13-May-08 21:11
baerten13-May-08 21:11 
AnswerRe: Drag&Drop under Vista Pin
Member 363066820-May-08 5:58
Member 363066820-May-08 5:58 
GeneralRe: Drag&Drop under Vista Pin
baerten20-May-08 21:27
baerten20-May-08 21:27 
GeneralRe: Drag&Drop under Vista Pin
Member 363066823-Jun-08 2:58
Member 363066823-Jun-08 2:58 
GeneralRe: Drag&Drop under Vista Pin
baerten23-Jun-08 3:12
baerten23-Jun-08 3:12 
GeneralRe: Drag&Drop under Vista Pin
Member 363066823-Jun-08 4:20
Member 363066823-Jun-08 4:20 
Questiondraw text in richtextbox.. Pin
kamalesh574313-May-08 20:33
kamalesh574313-May-08 20:33 

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

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