Click here to Skip to main content
15,907,497 members
Home / Discussions / C#
   

C#

 
GeneralRe: Disable copy paste in textbox Pin
Anthony Mushrow14-May-08 1:10
professionalAnthony Mushrow14-May-08 1:10 
GeneralRe: Disable copy paste in textbox Pin
dan!sh 14-May-08 1:36
professional dan!sh 14-May-08 1:36 
QuestionHandle error Pin
ellllllllie13-May-08 22:57
ellllllllie13-May-08 22:57 
AnswerRe: Handle error Pin
Christian Graus13-May-08 23:21
protectorChristian Graus13-May-08 23:21 
GeneralRe: Handle error Pin
ellllllllie13-May-08 23:39
ellllllllie13-May-08 23:39 
GeneralRe: Handle error Pin
Christian Graus14-May-08 0:02
protectorChristian Graus14-May-08 0:02 
GeneralRe: Handle error Pin
ellllllllie14-May-08 0:09
ellllllllie14-May-08 0:09 
QuestionInheritance Qusestion Pin
Harvey Saayman13-May-08 22:50
Harvey Saayman13-May-08 22:50 
AnswerRe: Inheritance Qusestion Pin
Christian Graus13-May-08 22:52
protectorChristian Graus13-May-08 22:52 
GeneralRe: Inheritance Qusestion Pin
Harvey Saayman13-May-08 23:00
Harvey Saayman13-May-08 23:00 
GeneralRe: Inheritance Qusestion Pin
Harvey Saayman13-May-08 23:14
Harvey Saayman13-May-08 23:14 
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 

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.