Click here to Skip to main content
15,912,207 members
Home / Discussions / Database
   

Database

 
QuestionCode to find sql server vulnerabilties Pin
sfernandes27-Jul-06 0:57
sfernandes27-Jul-06 0:57 
AnswerRe: Code to find sql server vulnerabilties Pin
LongRange.Shooter27-Jul-06 3:58
LongRange.Shooter27-Jul-06 3:58 
QuestionAsking user for Database name Pin
Thanat0s426-Jul-06 18:35
Thanat0s426-Jul-06 18:35 
AnswerRe: Asking user for Database name Pin
Colin Angus Mackay27-Jul-06 2:18
Colin Angus Mackay27-Jul-06 2:18 
QuestionSQL Server, Performance and Implementation Pin
clint198226-Jul-06 11:10
clint198226-Jul-06 11:10 
AnswerRe: SQL Server, Performance and Implementation Pin
Mike Dimmick27-Jul-06 1:02
Mike Dimmick27-Jul-06 1:02 
QuestionSP returns multiple results, can't get them all into datatables Pin
eappell26-Jul-06 5:11
eappell26-Jul-06 5:11 
AnswerRe: SP returns multiple results, can't get them all into datatables Pin
Rob Graham26-Jul-06 7:19
Rob Graham26-Jul-06 7:19 
from the help:
If the DataAdapter encounters multiple result sets, it creates multiple tables in the DataSet.
 The tables are given an incremental default name of TableN, starting with "Table" for Table0.
 If a table name is passed as an argument to the Fill method,
 the tables are given an incremental default name of TableNameN, starting with "TableName" for TableName0.


It would seem to me that you only need one ad.Fill call, say ad.Fill(ds,"Results");
Then bind to the tables like so:
 GridView1.DataSource = ds.Tables["Results"];<br />
GridView1.DataBind();<br />
<br />
GridView2.DataSource = ds.Tables["Results1"];<br />
GridView2.DataBind();<br />
<br />
GridView3.DataSource = ds.Tables["Results2"];<br />
GridView3.DataBind();

QuestionHow : automatted .rdl uploaded Pin
karthic_mohan26-Jul-06 2:27
karthic_mohan26-Jul-06 2:27 
QuestionSqlServer evaluation period expired Pin
lehya26-Jul-06 2:22
lehya26-Jul-06 2:22 
AnswerRe: SqlServer evaluation period expired Pin
Rob Graham26-Jul-06 2:49
Rob Graham26-Jul-06 2:49 
AnswerRe: SqlServer evaluation period expired Pin
Jerry Hammond26-Jul-06 5:02
Jerry Hammond26-Jul-06 5:02 
QuestionTrigger on update as insert data in table ..... [modified] Pin
DineshSharma25-Jul-06 23:25
DineshSharma25-Jul-06 23:25 
AnswerRe: Trigger on update as insert data in table ..... Pin
Duncan Edwards Jones25-Jul-06 23:39
professionalDuncan Edwards Jones25-Jul-06 23:39 
QuestionBasic SQL knowledge Pin
divyaswati25-Jul-06 19:33
divyaswati25-Jul-06 19:33 
AnswerRe: Basic SQL knowledge Pin
Reza Raad25-Jul-06 19:40
Reza Raad25-Jul-06 19:40 
AnswerRe: Basic SQL knowledge Pin
Paul Conrad26-Jul-06 7:29
professionalPaul Conrad26-Jul-06 7:29 
AnswerRe: Basic SQL knowledge Pin
Ennis Ray Lynch, Jr.26-Jul-06 12:01
Ennis Ray Lynch, Jr.26-Jul-06 12:01 
AnswerRe: Basic SQL knowledge Pin
Sebastien Lachance27-Jul-06 4:19
Sebastien Lachance27-Jul-06 4:19 
QuestionOnline SQL Class? Pin
Nancy K25-Jul-06 17:54
Nancy K25-Jul-06 17:54 
AnswerRe: Online SQL Class? Pin
Jim Conigliaro26-Jul-06 1:58
Jim Conigliaro26-Jul-06 1:58 
AnswerPut MySQL on your machine Pin
Ennis Ray Lynch, Jr.26-Jul-06 4:37
Ennis Ray Lynch, Jr.26-Jul-06 4:37 
QuestionLost in a sea of encryption, Keys, and certificates Pin
Nick The Newbie25-Jul-06 12:01
Nick The Newbie25-Jul-06 12:01 
QuestionRe: Lost in a sea of encryption, Keys, and certificates [modified] Pin
Nick The Newbie26-Jul-06 5:05
Nick The Newbie26-Jul-06 5:05 
AnswerRe: Lost in a sea of encryption, Keys, and certificates Pin
Ennis Ray Lynch, Jr.26-Jul-06 12:03
Ennis Ray Lynch, Jr.26-Jul-06 12:03 

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.