07 Event Driven FInals

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/55

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.

56 Terms

1
New cards

ADO

stands for "Active Data Objects"

2
New cards

ADO.NET

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

3
New cards

ADO.NET

It relies on the .NET Framework's various classes to process requests and transition between a database system and the user

4
New cards

Data Provider

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

5
New cards

DataSet

It characterizes a local copy of related data tables

6
New cards

DataTable

It manages the data for any entity

7
New cards

DataColumn

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

8
New cards

DataRelation

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

9
New cards

DataColumnMapping

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

10
New cards

DataView

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

11
New cards

Command

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

12
New cards

Connection

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

13
New cards

DataAdapters

It transfers DataSets between the data source and the caller

14
New cards

DataReaders

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

15
New cards

System.Data

It includes all generic data access classes

16
New cards

System.Data.Common

It includes classes that are shared or overridden by individual data providers

17
New cards

System.Data.EntityClient

It includes Entity Framework classes

18
New cards

System.Data.Linq.SqlClient

It includes LINQ to SQL provider classes

19
New cards

System.Data.Odbc

It includes ODVC provider classes

20
New cards

System.Data.OleDb

It includes OLE DB provider classes

21
New cards

System.Data.ProviderBase

It includes new base classes and connection factory classes

22
New cards

System.Data.Sql

It includes new generic interfaces and classes for SQL Server data access

23
New cards

System.Data.SqlClient

It includes SQL Server provider classes

24
New cards

System.Data.SqlTypes

It includes SQL Server data types

25
New cards

Server Explorer

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

26
New cards

Data Connections

It contains all the connections to the server and local databases

27
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

28
New cards

Step 1

What step is this in accessing data from the database? Create a connection to the specified server

29
New cards

Step 2

What step is this in accessing data from the database? Open a connection using the SqlConnection object

30
New cards

Step 3

What step is this in accessing data from the database? Create a command using the SqlCommand object

31
New cards

Step 4

What step is this in accessing data from the database? Use and create a DataReader or DataAdapter object

32
New cards

Step 5

What step is this in accessing data from the database? Call the Close() method to close the connection and release the resources

33
New cards

SqlConnection

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

34
New cards

ConnectionString

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

35
New cards

DataSource

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

36
New cards

Database

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

37
New cards

State

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

38
New cards

Server

To establish a connection, specify the computer name to which you want to connect.

39
New cards

Database / Initial Catalog

The attribute is used to specify the database to access the specified server

40
New cards

Trusted_Connection / Integrated Security

This attribute implements the secure connection with the database

41
New cards

Username

To specify the username used in a connection after assigning false or no to the Integrated Security attribute, use the User ID attribute and assign a valid username to it

42
New cards

Password/Pwd

When establishing a secure connection to a database, in addition to a valid username, this is needed

43
New cards

SqlCommand

This class is used to perform desired processing on the database

44
New cards

ExecuteNonQuery

This method executes the command but does not return output

45
New cards

ExecuteReader

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

46
New cards

SqlDataReader

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

47
New cards

ExecuteRow

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

48
New cards

ExecuteScalar

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

49
New cards

Connection

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

50
New cards

CommandText

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

51
New cards

CommandType

It indicates the way the CommandText property should be interpreted

52
New cards

SqlParameterCollection

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

53
New cards

Add()

It adds the specified SqlParameter object to the SqlParameterCollection and contains two (2) arguments: string paramaterName and SqlDbType

54
New cards

AddWithValue()

It adds a value to the end of the SqlParameterCollection and contains two (2) arguments: string parameterName and an object, that includes the value of that paremeter.

55
New cards

SqlDbType

It specifies the SQL Server data type of a field and property

56
New cards

SQL UPDATE

it is used to modify or update an existing record