Click here to Skip to main content
16,004,761 members
Home / Discussions / Database
   

Database

 
GeneralRe: Simple SQL delete statement Pin
albCode14-Dec-05 4:25
albCode14-Dec-05 4:25 
QuestionSQL Express and Learning Center Video Pin
Brigg Thorp13-Dec-05 3:59
Brigg Thorp13-Dec-05 3:59 
QuestionSQLEXPRESS Pin
Illegal Operation13-Dec-05 2:47
Illegal Operation13-Dec-05 2:47 
AnswerRe: SQLEXPRESS Pin
enjoycrack13-Dec-05 7:37
enjoycrack13-Dec-05 7:37 
QuestionSQL Pin
dev_rfid13-Dec-05 1:09
dev_rfid13-Dec-05 1:09 
AnswerRe: SQL Pin
Ritesh123413-Dec-05 2:19
Ritesh123413-Dec-05 2:19 
AnswerRe: SQL Pin
toxcct13-Dec-05 23:27
toxcct13-Dec-05 23:27 
AnswerRe: SQL Pin
miah alom14-Dec-05 4:24
miah alom14-Dec-05 4:24 
QuestionOleDbDataAdapter & Primary Keys Pin
JohnBeton13-Dec-05 0:53
JohnBeton13-Dec-05 0:53 
QuestionGet Secure data from host Pin
mtone12-Dec-05 10:12
mtone12-Dec-05 10:12 
AnswerRe: Get Secure data from host Pin
Farhan Noor Qureshi12-Dec-05 12:53
Farhan Noor Qureshi12-Dec-05 12:53 
QuestionHow to call another stored procedure within a sql server extended stored procedure? Pin
Xiangyang Liu 刘向阳12-Dec-05 10:03
Xiangyang Liu 刘向阳12-Dec-05 10:03 
AnswerRe: How to call another stored procedure within a sql server extended stored procedure? Pin
anandss13-Dec-05 9:20
anandss13-Dec-05 9:20 
GeneralRe: How to call another stored procedure within a sql server extended stored procedure? Pin
Xiangyang Liu 刘向阳14-Dec-05 4:11
Xiangyang Liu 刘向阳14-Dec-05 4:11 
QuestionStoredProcedure error Pin
R. A. Abbasi12-Dec-05 6:24
R. A. Abbasi12-Dec-05 6:24 
AnswerRe: StoredProcedure error Pin
Al Ortega12-Dec-05 6:59
Al Ortega12-Dec-05 6:59 
GeneralRe: StoredProcedure error Pin
R. A. Abbasi12-Dec-05 7:13
R. A. Abbasi12-Dec-05 7:13 
QuestionProblem with Insert Command Pin
fitz23456711-Dec-05 22:56
fitz23456711-Dec-05 22:56 
QuestionGenerate “Dataset” of Enterprise .Net Windows Application Problem Pin
Fariborz Golara11-Dec-05 22:25
Fariborz Golara11-Dec-05 22:25 
AnswerRe: Generate "Dataset" of Enterprise .Net Windows Application Problem Pin
Colin Angus Mackay12-Dec-05 4:53
Colin Angus Mackay12-Dec-05 4:53 
GeneralThank you Colin Pin
Fariborz Golara12-Dec-05 8:08
Fariborz Golara12-Dec-05 8:08 
QuestionDatabase table audit in SQL 2000 Pin
sumitjh11-Dec-05 22:01
sumitjh11-Dec-05 22:01 
QuestionAdo.net sqldatareader not working Pin
kal13na1311-Dec-05 21:59
kal13na1311-Dec-05 21:59 
Hi I am using asp.net in C# I am using sqldatareader where I am trying to select some rows from the (radiobuttonlist) from database and display in the datagrid which is not happening it gets stuck in the datareader.The action is taking place in the click button event the details to be displayed in the same and next page . here is the code

SqlConnection conn=new SqlConnection("server=KHWA73R;database=NorthWind;user id=sa;password=sa");
string strSelect=("SELECT CustomerID,OrderID FROM Orders" + " WHERE CustomerID = '' " + Radiobuttonlist1.SelectedItem.Value + "ORDER BY OrderID");
SqlDataReader reader;
SqlCommand mycmd=new SqlCommand(strSelect,conn);

try
{
conn.Open();
reader=mycmd.ExecuteReader();
DataGrid2.DataSource=mycmd.ExecuteReader();
DataGrid2.DataSource=reader;
DataGrid2.DataBind();

}

catch(Exception se)
{
Response.Write("Exception.."+ se.StackTrace);
}
finally
{
conn.Close();
}
if (Radiobuttonlist1.SelectedIndex > -1)
{
Label1.Text = "You selected: " +
Radiobuttonlist1.SelectedItem.Text;
}
Label1.Text ="Customers ID " + Radiobuttonlist1.SelectedItem.Text;
Server.Transfer("Print.aspx");

thanks


kal13na13
AnswerRe: Ado.net sqldatareader not working Pin
miah alom12-Dec-05 4:16
miah alom12-Dec-05 4:16 
GeneralRe: Ado.net sqldatareader not working Pin
kal13na1312-Dec-05 18:49
kal13na1312-Dec-05 18:49 

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.