Click here to Skip to main content
15,890,185 members
Home / Discussions / Database
   

Database

 
GeneralRe: Count Problem Pin
ronivars20-Feb-07 12:22
ronivars20-Feb-07 12:22 
QuestionCount Query Prob Pin
tadhg8820-Feb-07 6:39
tadhg8820-Feb-07 6:39 
AnswerRe: Count Query Prob Pin
andyharman20-Feb-07 7:05
professionalandyharman20-Feb-07 7:05 
AnswerRe: Count Query Prob Pin
tadhg8820-Feb-07 7:32
tadhg8820-Feb-07 7:32 
GeneralRe: Count Query Prob Pin
andyharman20-Feb-07 8:17
professionalandyharman20-Feb-07 8:17 
GeneralRe: Count Query Prob Pin
tadhg8821-Feb-07 0:37
tadhg8821-Feb-07 0:37 
GeneralRe: Count Query Prob Pin
tadhg8822-Feb-07 1:53
tadhg8822-Feb-07 1:53 
QuestionHow to add costum row to combo what linked to DataSource Pin
El'Cachubrey20-Feb-07 3:37
El'Cachubrey20-Feb-07 3:37 
Hi all, i have a few quetion to discover, bee so pleasant to explain me how i can do:


1)
I have combobox and data source for one


this.comboBox1.DataSource = this.authorsBindingSource;


Now I need to add to combobox an row, what not exist in bindingSource (supoose I want do display in combobox an additional row "not defined")
How I can do this????
---------------------------------------------------------------
2)
How I can to mark a rows in dataTable, so that ones not will be stored in database then this dataTable updated.
I mean:


//myDataTable - DataTable object

// I want that this row shouldn’t bee stored in database, but exist in //dataTable (what I should do)
DataRow dr1 = myDataTable.NewRow();

///initilize row columns with data
..


myDataTable.Rows.Add(dr1);


// I want that this row should bee stored in database and exist in //dataTable (rest all as is)
DataRow dr2 = myDataTable.NewRow();

///initilize row columns with data
..


myDataTable.Rows.Add(dr2);

//Want to bee stored dr2 not dr1
this.myDataTableAdapter.Update(myDataTable);


How I can do this.
-----------------------------------------------------------------------------------
3) How I can explore what column (DataColumn type) have default value???


QuestionHow to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 3:22
kindman_nb20-Feb-07 3:22 
AnswerRe: How to order Integer field as a string ?? Pin
Aswanikumarj20-Feb-07 3:45
Aswanikumarj20-Feb-07 3:45 
GeneralRe: How to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 5:05
kindman_nb20-Feb-07 5:05 
AnswerRe: How to order Integer field as a string ?? Pin
andyharman20-Feb-07 3:46
professionalandyharman20-Feb-07 3:46 
GeneralRe: How to order Integer field as a string ?? Pin
kindman_nb20-Feb-07 5:07
kindman_nb20-Feb-07 5:07 
QuestionSQL server does not exists or access denied. Pin
Aswanikumarj20-Feb-07 3:06
Aswanikumarj20-Feb-07 3:06 
AnswerRe: SQL server does not exists or access denied. Pin
Krish - KP20-Feb-07 17:11
Krish - KP20-Feb-07 17:11 
GeneralRe: SQL server does not exists or access denied. Pin
Aswanikumarj28-Feb-07 6:02
Aswanikumarj28-Feb-07 6:02 
QuestionAverage of all columns Pin
Sam Heller20-Feb-07 1:55
Sam Heller20-Feb-07 1:55 
AnswerRe: Average of all columns Pin
andyharman20-Feb-07 3:44
professionalandyharman20-Feb-07 3:44 
GeneralRe: Average of all columns Pin
Sam Heller20-Feb-07 5:09
Sam Heller20-Feb-07 5:09 
AnswerRe: Average of all columns Pin
andyharman20-Feb-07 22:40
professionalandyharman20-Feb-07 22:40 
QuestionSQL Server 2000 Installation problem on Windows server 2003 Pin
Gulfraz Khan20-Feb-07 1:51
Gulfraz Khan20-Feb-07 1:51 
AnswerRe: SQL Server 2000 Installation problem on Windows server 2003 Pin
Smart_Boy13-Mar-07 19:14
Smart_Boy13-Mar-07 19:14 
GeneralRe: SQL Server 2000 Installation problem on Windows server 2003 Pin
Gulfraz Khan14-Mar-07 5:49
Gulfraz Khan14-Mar-07 5:49 
QuestionNull values Pin
gauthee20-Feb-07 0:33
gauthee20-Feb-07 0:33 
AnswerRe: Null values Pin
andyharman20-Feb-07 0:35
professionalandyharman20-Feb-07 0:35 

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.