Click here to Skip to main content
15,887,325 members
Home / Discussions / Database
   

Database

 
Questionfull-text search help Pin
rockmouse6-Nov-05 17:27
rockmouse6-Nov-05 17:27 
QuestionHow to transform 3 Tables?? Pin
tbrake6-Nov-05 0:03
tbrake6-Nov-05 0:03 
QuestionTrain free @Microsoft Pin
vikas amin4-Nov-05 23:35
vikas amin4-Nov-05 23:35 
AnswerGet a life Pin
Rob Graham5-Nov-05 15:38
Rob Graham5-Nov-05 15:38 
GeneralRe: Get a life Pin
toxcct6-Nov-05 0:36
toxcct6-Nov-05 0:36 
Questionmetadata Pin
kittubond_0094-Nov-05 21:25
kittubond_0094-Nov-05 21:25 
AnswerRe: metadata Pin
André Ziegler4-Nov-05 23:53
André Ziegler4-Nov-05 23:53 
GeneralRe: metadata Pin
kittubond_0095-Nov-05 15:33
kittubond_0095-Nov-05 15:33 
I am Using VS C# 2005 But unable to get all meta dadata info

/************************************************
try
{
ref_con.Open();

DataTable dt1 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
_dataset.Tables.Add(dt1);
DataTable dt2 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Foreign_Keys, new object[] { });
_dataset.Tables.Add(dt2);
DataTable dt3 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Primary_Keys, new object[] { });
_dataset.Tables.Add(dt3);
DataTable dt4 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Check_Constraints, new object[] { });
_dataset.Tables.Add(dt4);
DataTable dt5 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Provider_Types, new object[] { });
_dataset.Tables.Add(dt5);
DataTable dt6 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Columns, new object[] { });
_dataset.Tables.Add(dt6);
DataTable dt7 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Constraint_Column_Usage, new object[] { });
_dataset.Tables.Add(dt7);
DataTable dt8 = ref_con.GetOleDbSchemaTable(OleDbSchemaGuid.Indexes, new object[] { });
_dataset.Tables.Add(dt8);
_dbtables.GetTableList(dt1, dt2,_dataset);
_dbcolumns.GetColumnList(dt1, dt5, dt6, _dataset);
results = true;
}
catch (Exception excp)
{
System.Windows.Forms.MessageBox.Show(excp.Message,"Failed To Get MetaData",
System.Windows.Forms.MessageBoxButtons.OK,System.Windows.Forms.MessageBoxIcon.Error);
}
finally
{
if (!ref_con.State.Equals(ConnectionState.Closed))
ref_con.Close();
}

but still unable to get all info
try this using a table containing columns of AutoNumber,long
and see the datatable value-----Provider_Types.
there same number value for some(binary) data types
************************************************/

Know it share it that is correct knowledge (...kittu)

-- modified at 21:34 Saturday 5th November, 2005
QuestionSql Connection Pin
NormBohana4-Nov-05 14:04
NormBohana4-Nov-05 14:04 
AnswerRe: Sql Connection Pin
Rob Graham4-Nov-05 14:56
Rob Graham4-Nov-05 14:56 
GeneralRe: Sql Connection Pin
NormBohana4-Nov-05 15:03
NormBohana4-Nov-05 15:03 
Questionaccess to MSsql pubs data from vc6.0 Pin
markoot4-Nov-05 8:31
markoot4-Nov-05 8:31 
AnswerRe: access to MSsql pubs data from vc6.0 Pin
markoot4-Nov-05 10:55
markoot4-Nov-05 10:55 
Questionsp procedure Help!!! Pin
Petdav4-Nov-05 4:24
Petdav4-Nov-05 4:24 
AnswerRe: sp procedure Help!!! Pin
Rob Graham4-Nov-05 15:10
Rob Graham4-Nov-05 15:10 
Questionsp Help!!! Pin
Petdav4-Nov-05 4:20
Petdav4-Nov-05 4:20 
QuestionHow to modify a table Without dropping Pin
SIJUTHOMASP4-Nov-05 0:42
professionalSIJUTHOMASP4-Nov-05 0:42 
AnswerRe: How to modify a table Without dropping Pin
Colin Angus Mackay4-Nov-05 1:04
Colin Angus Mackay4-Nov-05 1:04 
AnswerRe: How to modify a table Without dropping Pin
Daniel Santillanes8-Nov-05 13:35
professionalDaniel Santillanes8-Nov-05 13:35 
GeneralRe: How to modify a table Without dropping Pin
n10sive11-Nov-05 17:17
n10sive11-Nov-05 17:17 
Questiongeting the first date Pin
microuser_20003-Nov-05 23:43
microuser_20003-Nov-05 23:43 
AnswerRe: geting the first date Pin
Colin Angus Mackay4-Nov-05 0:10
Colin Angus Mackay4-Nov-05 0:10 
GeneralRe: geting the first date Pin
microuser_20004-Nov-05 3:03
microuser_20004-Nov-05 3:03 
Questionsaving data from a datagrid to a database Pin
steve_rm3-Nov-05 17:41
steve_rm3-Nov-05 17:41 
Question@@Servername Pin
Petdav3-Nov-05 10:02
Petdav3-Nov-05 10:02 

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.