finals programming

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

31 Terms

1
New cards

ADO.NET

stands for “Active Data Objects,” where its library is a rich framework that retrieves and updates information in various relational databases, which include Microsoft SQL Server, Microsoft Access, Oracle, and XML. It

2
New cards

Data provider

It is used for connecting in the database, recovering results, updating data, and executing commands.

3
New cards

Dataset

It characterizes a local copy of related data tables.

o It is composed of one or more DataTable objects that are manipulated and updated as per the requirements of the users or client.

4
New cards

DataTable

It manages the data for any entity. It contains zero or more rows of data, and each value shown in the data table is identified by the DataColumn.

5
New cards

DataColumn

It includes a data type declaration based on the kind of data saved.

6
New cards

DataRelation

It is used to link two (2) DataTable classes inside the DataSet class.

7
New cards

DataColumnMapping

It is used to map a table name from the database to a DataTable within a DataSet.

8
New cards

DataView

It is used to customize the view of the table or desired view of the rows in a DataTable

9
New cards

Command

It can run SQL commands and perform a stored procedure—accessing and manipulating data

10
New cards

Connection

From the data source, it allows users to connect and disconnect.

11
New cards

DataAdapters

It transfers DataSets between the data source and the caller. It also acts as a connection between the data source and DataSet

12
New cards

DataReaders

It is a read-only access to data using a server-side cursor.

13
New cards

Server Explorer

It is a server management console that is used for logging in to servers, opening data connections, and accessing databases.

14
New cards

Data Connections

It contains all the connections to the server and local databases.

15
New cards

SQL Server Object Explorer

It is used to design, connect to the available database, browse the schema, and create a query on its object.

16
New cards

SqlConnection

This class is used to open a connection using the Open() method. The connection can be closed by calling the Close() method.

17
New cards

ConnectionString

a property that is used to read or assign the connection string to be used by the SqlConnection class

18
New cards

DataSource

a read-only property that returns the name of the SQL Server instance

19
New cards

Database

a read-only property that returns the name of the database

20
New cards

State

a read-only property that returns the current state of the connection.

21
New cards

SqlCommand

This class is used to perform desired processing on the database. It allows executing any direct T-SQL or stored procedure on the server.

22
New cards

ExecuteNonQuery

This method executes the command but does not return output.

23
New cards

ExecuteReader

This method executes the command and returns a DataReader object based on the SQL statement.

24
New cards

SqlDataReader

This object is forward-only and read-only cursor that can be iterated through to fetch the rows in it.

25
New cards

ExecuteRow

It executes the command and returns the SqlRecord object that contains a single returned row

26
New cards

ExecuteScalar

It executes the command and returns the first column of the first row in the result set.

27
New cards

CommandText

It gets or sets the stored procedure or the T-SQL statement.

28
New cards

CommandType

It indicates the way the CommandText property should be interpreted.

29
New cards

SqlParameterCollection

It refers to a collection of parameters that is connected with SqlCommand.

30
New cards

SQL UPDATE

- It is used to modify or update an existing record.

- It uses the WHERE clause to determine the number of records that will be updated.

31
New cards

Property of the Command object • Connection

It gets or sets the SqlConnection class that can be used by the Command object