Quantum Internet Benefits

Image
  The quantum internet is a network of quantum computers that are connected together using quantum communication. It has the potential to revolutionize many industries, including: Secure communications: The quantum internet would be inherently secure, as it would be impossible to eavesdrop on quantum communications without being detected. This could be used for applications such as secure financial transactions, government communications, and military applications. Quantum computing: The quantum internet would allow quantum computers to be connected together, which would allow them to solve problems that are currently impossible for classical computers. This could be used for applications such as drug discovery, financial modeling, artificial intelligence, and materials science. Quantum sensors: The quantum internet could be used to connect quantum sensors together, which would allow them to create a global network of sensors that could be used to monitor the environment, detect earthq

C# Windows Application Data Form sample Module: Save and Retrieve Data using MS SQL database


Methods Used:

1. Created a database as NameDB and Database table as namedata as follows.

--table for saving retrieving datas

create table namedata
(
 ID int identity,
 Firstname nvarchar(500),
 Secondname nvarchar(500),
 Fullname nvarchar(500)
)


--get  query result
select * from namedata


2. Create a  stored procedure for saving data


-- creating stored procedure for saving data
create proc nameprocedure 
@Firstname as nvarchar(500),
@Secondname as nvarchar(500),
@Fullname as nvarchar(500)
as
begin 
 SET NOCOUNT ON;
Insert into  namedata(Firstname,Secondname,Fullname)
values(@Firstname,@Secondname,@Fullname)
end
-- execute strored procedure
exec nameprocedure

3. Windows Application design for save and Retrieve data form



set formborderstyle as none


























4. App.config settings to Connect database


<?xml version="1.0"?>
<configuration>
  <configSections>
  </configSections>
  <connectionStrings>
    <add name="Connectionstring1" connectionString="Data Source=localhost\sqlexpress; Initial Catalog=NameDB;Integrated Security=true"
      providerName="System.Data.SqlClient" />
    <add name="saveandretrieve.Properties.Settings.ConnectionString1"
      connectionString="Data Source=localhost\sqlexpress;Initial Catalog=NameDB;Integrated Security=True"
      providerName="System.Data.SqlClient" />
  </connectionStrings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>


5. Class Diagram analysis with SQL query and stored procedure




  
6. Form Designer Coding




6. Outputs

a) Storing Data from Windows Application to Sql DataBase.







b) Data stored in MS SQL Database





c) Retrieve Data(K Kumaran) from database to windows Application






















































After Clicking Retrieve Button







































Comments

Popular posts from this blog

Jsp / Java Password Encrypt and Decrypt Example

SQL Script : Adventure works database setup and Select query, list of tables #100daysofsql

How to Hide Gridview and Show the selected gridview row details in Form View using ASP.NET C#