What does database provides?
What state is data stored inside variable?
What is a Database Management System?
What is Database Management System designed to?
List out the 3 layer manipulation for C# application can interact with
What is the data type used to represent True / False value
1. SQL Server Data Type
2. C#
What is the data type used to represent date and time value
1. SQL Server Data Type
2. C#
What is the data type used to represent decimal value with total digits appearing after the decimal point
1. SQL Server Data Type
2. C#
1.decimal ( t , d )
2. decimal
What is the data type used to represent real numbers
1. SQL Server Data Type
2. C#
What is the data type used to represent an integer number
1. SQL Server Data Type
2. C#
What is the data type used to represent currency?
1. SQL Server Data Type
2. C#
What is the data type used to represent a fixed-length Unicode string with a maximun length of n character?
1. SQL Server Data Type
2. C#
What is the data type used to represent a variable-length Unicode string with a maximun length of n character?
1. SQL Server Data Type
2. C#
What does most database have?
What is Primary Key used? ( 2 )
How to solve issues for data I want to store in a table does not contain any unique items that can be used as a primary keys? ( 2 )
What is a table?
What is a row or a column?
Name Phone
Jil 555-5678
List out the layers that .NET applications uses to connect to a database
What databases that Visual Studio provides that make it easy to create and configure the database?
What information that the connection string includes?
What is the syntax for connection string?
SqlConnection connection = new SqlConnection(connectionString)
What is the full name for SQL?
What parts of SQL involves Data Definition Language? ( 3 )