Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: trapping events in downlaod dialog box in asp.net with c# Pin
ashu_sharma219-Aug-04 18:05
ashu_sharma219-Aug-04 18:05 
GeneralSystem Informtion Pin
Member 12302189-Aug-04 2:39
Member 12302189-Aug-04 2:39 
GeneralRe: System Informtion Pin
leppie9-Aug-04 3:26
leppie9-Aug-04 3:26 
GeneralRe: System Informtion Pin
Nick Parker9-Aug-04 3:32
protectorNick Parker9-Aug-04 3:32 
GeneralRe: System Informtion Pin
Stefan Troschuetz9-Aug-04 5:30
Stefan Troschuetz9-Aug-04 5:30 
GeneralCsharp , MySQLDriverCS + dataGrid Pin
Nekosan9-Aug-04 2:28
Nekosan9-Aug-04 2:28 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
exhaulted9-Aug-04 3:34
exhaulted9-Aug-04 3:34 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
Nekosan9-Aug-04 3:57
Nekosan9-Aug-04 3:57 
MySQLDataAdapter da = new MySQLDataAdapter();
MySQLConnection con = new MySQLConnection();
con = new MySQLConnection(new MySQLConnectionString(ip,
dbname,
username,
password).AsString);

con.Open();
MySQLCommand sql = new MySQLCommand("SELECT * FROM `character`",con);

MySQLDataReader reader = sql.ExecuteReaderEx();
if(reader.Read())
{
conn.Text = "Yes";
while(reader.Read())
{
}
}
reader.Close();
sql.Dispose();
con.Close();
}
where its while(reader.Read())
{
}
Ive put da.Fill(ds);
but thats not what I need.
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
exhaulted9-Aug-04 4:22
exhaulted9-Aug-04 4:22 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
Nekosan9-Aug-04 4:34
Nekosan9-Aug-04 4:34 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
exhaulted9-Aug-04 4:57
exhaulted9-Aug-04 4:57 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
Nekosan9-Aug-04 5:29
Nekosan9-Aug-04 5:29 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
exhaulted9-Aug-04 22:25
exhaulted9-Aug-04 22:25 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
Nekosan10-Aug-04 9:29
Nekosan10-Aug-04 9:29 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
exhaulted10-Aug-04 21:35
exhaulted10-Aug-04 21:35 
GeneralRe: Csharp , MySQLDriverCS + dataGrid Pin
Nekosan14-Aug-04 23:51
Nekosan14-Aug-04 23:51 
GeneralIDE / Command Window Pin
doctrane9-Aug-04 2:06
doctrane9-Aug-04 2:06 
GeneralRe: IDE / Command Window Pin
Mardawi9-Aug-04 8:52
Mardawi9-Aug-04 8:52 
GeneralRe: IDE / Command Window Pin
doctrane10-Aug-04 3:19
doctrane10-Aug-04 3:19 
GeneralRe: IDE / Command Window Pin
Mardawi10-Aug-04 8:26
Mardawi10-Aug-04 8:26 
GeneralRe: IDE / Command Window Pin
doctrane10-Aug-04 10:49
doctrane10-Aug-04 10:49 
QuestionRead and Write data from different databases, but How?? Pin
caliasp9-Aug-04 1:38
caliasp9-Aug-04 1:38 
AnswerRe: Read and Write data from different databases, but How?? Pin
exhaulted9-Aug-04 4:29
exhaulted9-Aug-04 4:29 
GeneralUsing the same class belonging to the same namespaces in two different assembly for a project Pin
gokselm9-Aug-04 1:36
gokselm9-Aug-04 1:36 
GeneralRe: Using the same class belonging to the same namespaces in two different assembly for a project Pin
exhaulted9-Aug-04 1:56
exhaulted9-Aug-04 1:56 

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.