Click here to Skip to main content
15,888,113 members
Home / Discussions / C#
   

C#

 
GeneralRe: Reading command output from a database Pin
Christian Graus13-Apr-08 21:28
protectorChristian Graus13-Apr-08 21:28 
GeneralRe: Reading command output from a database Pin
Muammar©13-Apr-08 21:29
Muammar©13-Apr-08 21:29 
GeneralRe: Reading command output from a database Pin
blackjack215013-Apr-08 23:41
blackjack215013-Apr-08 23:41 
GeneralRe: Reading command output from a database Pin
Muammar©14-Apr-08 0:06
Muammar©14-Apr-08 0:06 
GeneralRe: Reading command output from a database Pin
Muammar©13-Apr-08 21:28
Muammar©13-Apr-08 21:28 
GeneralRe: Reading command output from a database Pin
Christian Graus13-Apr-08 21:34
protectorChristian Graus13-Apr-08 21:34 
GeneralRe: Reading command output from a database Pin
Muammar©13-Apr-08 21:39
Muammar©13-Apr-08 21:39 
GeneralGot it working! [modified] Pin
Muammar©13-Apr-08 22:03
Muammar©13-Apr-08 22:03 
string strDesc = @"SELECT concat(column_name,',') ""Name"" FROM user_tab_columns WHERE table_name='TEST'";
OracleCommand oc = new OracleCommand(strDesc, con);
adap = new OracleDataAdapter(oc);
OracleDataReader oraDataReader = oc.ExecuteReader();
string strTemp = String.Empty;
while (oraDataReader.Read())
strTemp += oraDataReader.GetString(0);

strTemp = strTemp.Substring(0, strTemp.Length - 1);
MessageBox.Show(strTemp);

Thanks to you ChristianSmile | :) Rose | [Rose]


All generalizations are wrong, including this one!
(\ /)
(O.o)
(><)

modified on Monday, April 14, 2008 4:16 AM

GeneralRe: Got it working! Pin
Christian Graus13-Apr-08 22:21
protectorChristian Graus13-Apr-08 22:21 
QuestionDataGridView double column cells validation Pin
Noemi Katinka13-Apr-08 20:44
Noemi Katinka13-Apr-08 20:44 
GeneralSQL Slow with Threading Pin
Expert Coming13-Apr-08 19:56
Expert Coming13-Apr-08 19:56 
GeneralRe: SQL Slow with Threading Pin
Guffa13-Apr-08 20:41
Guffa13-Apr-08 20:41 
GeneralRe: SQL Slow with Threading Pin
Expert Coming13-Apr-08 21:19
Expert Coming13-Apr-08 21:19 
QuestionHow to access controls which are in the Panel or Groupbox Pin
NarVish13-Apr-08 19:37
NarVish13-Apr-08 19:37 
AnswerRe: How to access controls which are in the Panel or Groupbox Pin
Expert Coming13-Apr-08 19:39
Expert Coming13-Apr-08 19:39 
GeneralRe: How to access controls which are in the Panel or Groupbox Pin
NarVish13-Apr-08 19:44
NarVish13-Apr-08 19:44 
GeneralRe: How to access controls which are in the Panel or Groupbox Pin
Expert Coming13-Apr-08 19:50
Expert Coming13-Apr-08 19:50 
AnswerRe: How to access controls which are in the Panel or Groupbox Pin
darkelv13-Apr-08 19:50
darkelv13-Apr-08 19:50 
Generalusing StretchDIBits() functions in C# Pin
Faysal13-Apr-08 18:01
Faysal13-Apr-08 18:01 
GeneralRe: using StretchDIBits() functions in C# Pin
Christian Graus13-Apr-08 18:12
protectorChristian Graus13-Apr-08 18:12 
GeneralBackup and Restore MySql Database Using C# Pin
joie717013-Apr-08 17:16
joie717013-Apr-08 17:16 
GeneralRe: Backup and Restore MySql Database Using C# Pin
Razvan Dimescu13-Apr-08 19:59
Razvan Dimescu13-Apr-08 19:59 
GeneralRe: Backup and Restore MySql Database Using C# Pin
joie717014-Apr-08 18:30
joie717014-Apr-08 18:30 
GeneralRe: Backup and Restore MySql Database Using C# Pin
Razvan Dimescu14-Apr-08 20:10
Razvan Dimescu14-Apr-08 20:10 
GeneralRe: Backup and Restore MySql Database Using C# Pin
joie717015-Apr-08 20:08
joie717015-Apr-08 20:08 

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.