Database Programming with C
C language is known to be one of the most popular programming languages since 1972. It is known as the general purpose structured programming language that can be used to develop various applications. Since then many applications have been and are developed using C programming language.
Database Programming with JDBC
Type 4 drivers or Native protocol driver is known to be the one with the best features and functions. Type 4 driver does not have any native methods and is a complete Java driver. You need not to install it on the client before use and the can be easily downloaded or configured on a system very easily. One of the best features of Type 4 driver is that it interacts directly with the DBMS server.
Firstly, you need to register the type of driver that you are using by using the string,
Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”);
Database Programming with Microsoft Access
Microsoft Access is a DBMS that is known to almost all of us. Most of the computer professionals must have used this DBMS at least once in their lifetime. With the help of Microsoft Access we can easily create new relational databases, insert, and update and delete data. Microsoft Access has gained more popularity with its ability to relate one or more tables in the database.
Password Management System Update
DotNetNuke (DNN) – An Introduction
Check Existence of File in ASP.NET and C#
Using system.IO;
We have to place these controls on the webpage (ASPX page)
Text box with ID=Textbox1
Button with ID= button1
Label with ID= label1
5 Tips & Tricks in ASP.NET
private void DataGridvie_selected(Object sender,EventArgs e)
{
DataSet da=new DataSet();
int i=datagrid1.selectedIndex;
int empidval=ds.Tables["emp"].Rows[i][0].ToString();
SqlConnection conn=new Sqlconnection("conn string");
conn.Open();