hello ,
i am working on ASP.NET & C#. I want to insert/update/delete some
datas to the database. the datas are based on the object. For example
class Person
{
string name, address, pincode;
};
i have related schema in the SQL Server database. can i store the
above class object to the d...
more >>
Dear friends my problem is this:
I have installed MSDE and when try to connect to it by this code:
Try
Dim conn As New SqlConnection("server=VSDOTNET;uid=sa;database=master")
conn.Open()
If (conn.State = ConnectionState.Open) Then
MessageBox.Show("Connection opened successfully")
En...
more >>
How I can handle to the stores procedures in informix
9.30?
Thanks...
more >>
I'm know the "old" implementation of ADO very well, and I
am now trying to get used to ADO.NET. I've always
preferred creating connection, commands and recordsets
programmaticaly since every application I've built that
needs data access allows for modifiable connection
settings. This lea...
more >>