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

Database

 
AnswerRe: How to get list of databases in Oracle? Pin
Smart_Boy20-Mar-07 20:44
Smart_Boy20-Mar-07 20:44 
GeneralRe: How to get list of databases in Oracle? Pin
scottgp21-Mar-07 3:25
professionalscottgp21-Mar-07 3:25 
QuestionInsert into Table Values Pin
Rajiya20-Mar-07 0:28
Rajiya20-Mar-07 0:28 
AnswerRe: Insert into Table Values Pin
coolestCoder20-Mar-07 1:10
coolestCoder20-Mar-07 1:10 
GeneralRe: Insert into Table Values Pin
NanaAM20-Mar-07 1:38
NanaAM20-Mar-07 1:38 
GeneralRe: Insert into Table Values Pin
Dave Kreskowiak20-Mar-07 16:42
mveDave Kreskowiak20-Mar-07 16:42 
AnswerRe: Insert into Table Values Pin
Pete O'Hanlon20-Mar-07 1:50
mvePete O'Hanlon20-Mar-07 1:50 
QuestionCant Add Column with text to System.Data.DataSet Pin
dimaaan20-Mar-07 0:03
dimaaan20-Mar-07 0:03 
Hi All. Could someone please explain me why when i add the column, and place the text in cell, the text is not displaying?

DataSet ds = DBEngine.GetOurSIS(Program.DB.Connection);

DataTable tbl = ds.Tables[0];
DataColumn col = tbl.Columns.Add("S_trot", typeof(string));
int ColIndex = col.Ordinal;
for(int i = 0; i < tbl.Rows.Count; i++) {
int CurrShipID = (int)tbl.Rows[i].ItemArray[1];
int CurrSumTrot = Program.DB.GetShipTrotil(Program.OurTeam, CurrShipID);
CurrSumTrot = 10;
tbl.Rows[i].ItemArray[ColIndex] = CurrSumTrot.ToString();
}
dataGridSIS.DataSource = ds;
dataGridSIS.DataMember = TblNames.TblNositeliName;
Question"All words" or "Any word" query Pin
hepsy.i19-Mar-07 23:45
hepsy.i19-Mar-07 23:45 
AnswerRe: &amp;quot;All words&amp;quot; or &amp;quot;Any word&amp;quot; query Pin
coolestCoder19-Mar-07 23:53
coolestCoder19-Mar-07 23:53 
GeneralRe: &amp;quot;All words&amp;quot; or &amp;quot;Any word&amp;quot; query Pin
hepsy.i20-Mar-07 0:51
hepsy.i20-Mar-07 0:51 
GeneralRe: &amp;amp;quot;All words&amp;amp;quot; or &amp;amp;quot;Any word&amp;amp;quot; query Pin
coolestCoder20-Mar-07 1:08
coolestCoder20-Mar-07 1:08 
QuestionLock records or table of access database Pin
hamid_m19-Mar-07 23:11
hamid_m19-Mar-07 23:11 
AnswerRe: Lock records or table of access database Pin
joon vh.20-Mar-07 23:05
joon vh.20-Mar-07 23:05 
QuestionMySQL Update for 20,000 rows takes 4+ hours? Pin
Paul Betteridge19-Mar-07 22:46
Paul Betteridge19-Mar-07 22:46 
AnswerRe: MySQL Update for 20,000 rows takes 4+ hours? Pin
Pete O'Hanlon20-Mar-07 1:53
mvePete O'Hanlon20-Mar-07 1:53 
GeneralRe: MySQL Update for 20,000 rows takes 4+ hours? Pin
Paul Betteridge20-Mar-07 2:59
Paul Betteridge20-Mar-07 2:59 
GeneralRe: MySQL Update for 20,000 rows takes 4+ hours? Pin
Pete O'Hanlon20-Mar-07 3:11
mvePete O'Hanlon20-Mar-07 3:11 
QuestionHow to query all available database on the server Pin
Member 258581919-Mar-07 21:46
Member 258581919-Mar-07 21:46 
AnswerRe: How to query all available database on the server Pin
Tirthadip19-Mar-07 22:14
Tirthadip19-Mar-07 22:14 
Questionupdating an sql database Pin
Keshav V. Kamat19-Mar-07 17:22
Keshav V. Kamat19-Mar-07 17:22 
AnswerRe: updating an sql database Pin
N a v a n e e t h19-Mar-07 19:26
N a v a n e e t h19-Mar-07 19:26 
AnswerRe: updating an sql database Pin
Imran Khan Pathan19-Mar-07 19:28
Imran Khan Pathan19-Mar-07 19:28 
QuestionSQLExpress usage advice please Pin
Glen Harvy19-Mar-07 16:57
Glen Harvy19-Mar-07 16:57 
QuestionHow to get the IP address of a user sitting behind a routher? Pin
Khoramdin19-Mar-07 12:39
Khoramdin19-Mar-07 12:39 

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.