Click here to Skip to main content
15,892,298 members
Home / Discussions / Database
   

Database

 
GeneralRe: ACCESS 2003 Inner join Clause problem Pin
radasys24-Apr-05 7:45
radasys24-Apr-05 7:45 
GeneralRe: ACCESS 2003 Inner join Clause problem Pin
Greeky24-Apr-05 8:04
Greeky24-Apr-05 8:04 
GeneralData Binding - DropDownList Pin
brian5523-Apr-05 4:32
brian5523-Apr-05 4:32 
GeneralRe: Data Binding - DropDownList Pin
Jerry Hammond23-Apr-05 5:58
Jerry Hammond23-Apr-05 5:58 
GeneralRe: Data Binding - DropDownList Pin
brian5524-Apr-05 4:19
brian5524-Apr-05 4:19 
GeneralRe: Data Binding - DropDownList Pin
Jerry Hammond24-Apr-05 4:54
Jerry Hammond24-Apr-05 4:54 
GeneralRe: Data Binding - DropDownList Pin
Jerry Hammond24-Apr-05 4:59
Jerry Hammond24-Apr-05 4:59 
GeneralRe: Data Binding - DropDownList Pin
rudy.net26-Apr-05 19:26
rudy.net26-Apr-05 19:26 
I am surprised that the previous code didn't work. I tried it using the pubs database and it worked fine. Make sure you close the database after calling DataBind. I tried closing before and got an error.
Following is my code:
<br />
private void BindListToDropDown()<br />
{<br />
	string query = "select * from Authors";<br />
	SqlCommand cmd = new SqlCommand(query, conn);  //where conn is a SqlConnection to pubs database.<br />
	conn.Open();<br />
	SqlDataReader dr = cmd.ExecuteReader();<br />
	this.DropDownList1.DataSource = dr;<br />
	this.DropDownList1.DataTextField = "au_lname";<br />
	this.DropDownList1.DataValueField = "au_id";<br />
	this.DropDownList1.DataBind();<br />
	conn.Close();<br />
}<br />

GeneralRe: Data Binding - DropDownList Pin
Illegal Operation24-Apr-05 2:58
Illegal Operation24-Apr-05 2:58 
GeneralRe: Data Binding - DropDownList Pin
brian5524-Apr-05 4:22
brian5524-Apr-05 4:22 
GeneralProblem with trigger on tables and views Pin
blbecek.pitomej22-Apr-05 23:53
blbecek.pitomej22-Apr-05 23:53 
GeneralRe: Problem with trigger on tables and views Pin
Member 190801324-Apr-05 8:23
Member 190801324-Apr-05 8:23 
GeneralRe: Problem with trigger on tables and views Pin
blbecek.pitomej25-Apr-05 10:09
blbecek.pitomej25-Apr-05 10:09 
GeneralUpdate Question Pin
rudemusik22-Apr-05 11:43
rudemusik22-Apr-05 11:43 
GeneralRe: Update Question Pin
Yulianto.22-Apr-05 19:25
Yulianto.22-Apr-05 19:25 
Generalequivalent to OFFSET Pin
Drew Stainton22-Apr-05 11:08
Drew Stainton22-Apr-05 11:08 
GeneralRe: equivalent to OFFSET Pin
Colin Angus Mackay22-Apr-05 11:55
Colin Angus Mackay22-Apr-05 11:55 
GeneralRe: equivalent to OFFSET Pin
Drew Stainton22-Apr-05 13:22
Drew Stainton22-Apr-05 13:22 
GeneralAlternative to dynamic sp's Pin
totig22-Apr-05 2:16
totig22-Apr-05 2:16 
GeneralRe: Alternative to dynamic sp's Pin
Mike Dimmick22-Apr-05 3:51
Mike Dimmick22-Apr-05 3:51 
GeneralTreeView--Treenode with a Checkbox bound to database Pin
billoo21-Apr-05 19:14
billoo21-Apr-05 19:14 
GeneralSQL Server Express Install Pin
RChin21-Apr-05 6:41
RChin21-Apr-05 6:41 
GeneralRe: SQL Server Express Install Pin
Jerry Hammond22-Apr-05 2:50
Jerry Hammond22-Apr-05 2:50 
GeneralRe: SQL Server Express Install Pin
RChin22-Apr-05 6:25
RChin22-Apr-05 6:25 
GeneralUsing mysql database Pin
Sasuko21-Apr-05 6:21
Sasuko21-Apr-05 6:21 

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.