Click here to Skip to main content
15,891,033 members
Home / Discussions / Database
   

Database

 
AnswerRe: how can rename table name with tsql ? Pin
B.A7-Apr-07 22:40
B.A7-Apr-07 22:40 
QuestionDTS help Pin
indian1437-Apr-07 6:16
indian1437-Apr-07 6:16 
Questiongive DTS source file at runtime Pin
indian1436-Apr-07 22:04
indian1436-Apr-07 22:04 
QuestionStored Procedure Pin
vengaqua6-Apr-07 21:44
vengaqua6-Apr-07 21:44 
AnswerRe: Stored Procedure Pin
Rob Graham7-Apr-07 4:24
Rob Graham7-Apr-07 4:24 
Questionwhat is different between SqlDataAdapter and SqlDataReader?.what is different between SqlDataAdapter and SqlDataReader?.these 2 r different from dataadapter and datareader. Pin
sathyan_82946-Apr-07 18:53
sathyan_82946-Apr-07 18:53 
AnswerRe: what is different between SqlDataAdapter and SqlDataReader?.what is different between SqlDataAdapter and SqlDataReader?.these 2 r different from dataadapter and datareader. Pin
vengaqua6-Apr-07 21:56
vengaqua6-Apr-07 21:56 
AnswerRe: what is different between SqlDataAdapter and SqlDataReader?.what is different between SqlDataAdapter and SqlDataReader?.these 2 r different from dataadapter and datareader. Pin
Rob Graham7-Apr-07 4:17
Rob Graham7-Apr-07 4:17 
SqlDataAdapter is a version of the DataAdapter that is specific for use with Sql Server. For other databases an OleDbDataAdapter or OdbcDataAtapter would be appropriate. Both of these classes inherit from the DataAdapter class, which providesthe abstract model for both. Similarly, SqlDataReader is an implementation of (inherits from) DataReader, one which is specifically for use with SQL Server databases.

DataAdatpters are disigned to serve as the bridge between a database and the in memory representastion classes DataSet and DataTable. The provide mechanisms for populating Datasets with the data, metadata and relationships form a database, and allow one to work with this in memory data while disconnected from the database. Mechanisms fro reconnecting and updating the database are also provided.
DataReaders are designed for rapid reading of data from a database. The data is provided as a set of records which must be read in order and can only be read once without closing and restarting the datareader.

All of this information (in much more detail) is available from MSDN[^]



AnswerRe: what is different between SqlDataAdapter and SqlDataReader?.what is different between SqlDataAdapter and SqlDataReader?.these 2 r different from dataadapter and datareader. Pin
Vinay Dornala8-Apr-07 21:00
Vinay Dornala8-Apr-07 21:00 
QuestionSQL triple-join question Pin
GregStevens6-Apr-07 7:15
GregStevens6-Apr-07 7:15 
AnswerRe: SQL triple-join question Pin
Ian Dennis6-Apr-07 7:42
Ian Dennis6-Apr-07 7:42 
AnswerRe: SQL triple-join question Pin
Hayder Marzouk6-Apr-07 7:46
Hayder Marzouk6-Apr-07 7:46 
AnswerRe: SQL triple-join question Pin
Jaiprakash M Bankolli6-Apr-07 18:10
Jaiprakash M Bankolli6-Apr-07 18:10 
QuestionDatabase isn't updated.. Pin
nadinekamal6-Apr-07 7:06
nadinekamal6-Apr-07 7:06 
AnswerRe: Database isn't updated.. Pin
Colin Angus Mackay6-Apr-07 10:39
Colin Angus Mackay6-Apr-07 10:39 
GeneralRe: Database isn't updated.. Pin
nadinekamal6-Apr-07 12:51
nadinekamal6-Apr-07 12:51 
GeneralRe: Database isn't updated.. Pin
Colin Angus Mackay6-Apr-07 14:58
Colin Angus Mackay6-Apr-07 14:58 
QuestionExcessive unused space Pin
Ian Dennis6-Apr-07 7:03
Ian Dennis6-Apr-07 7:03 
AnswerRe: Excessive unused space Pin
Marek Grzenkowicz8-Apr-07 9:24
Marek Grzenkowicz8-Apr-07 9:24 
GeneralRe: Excessive unused space Pin
Ian Dennis9-Apr-07 5:31
Ian Dennis9-Apr-07 5:31 
GeneralRe: Excessive unused space Pin
Marek Grzenkowicz9-Apr-07 6:49
Marek Grzenkowicz9-Apr-07 6:49 
GeneralRe: Excessive unused space Pin
Ian Dennis9-Apr-07 7:05
Ian Dennis9-Apr-07 7:05 
GeneralRe: Excessive unused space Pin
Marek Grzenkowicz9-Apr-07 21:43
Marek Grzenkowicz9-Apr-07 21:43 
GeneralRe: Excessive unused space Pin
Ian Dennis11-Apr-07 7:59
Ian Dennis11-Apr-07 7:59 
AnswerRe: Excessive unused space Pin
Ian Dennis11-Apr-07 8:11
Ian Dennis11-Apr-07 8:11 

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.