blah blah blah is here! blah blah » Close

0
votes
0 answers

Changing the property of the buttons

I have a Windows Form where 225 buttons are added at the run time, also I have the database which have two columns (first column is the SeatNumber with the datatype nchar(4) and the other column is IsBooked with the datatype bit). The SeatN ...

0
votes
1 answers

Inserting data from text box

Hi All, I am trying to insert data in one of the tables using SQL Server. Below is the sql command: string insertSQL = "Insert into CUSTOMERS (" + " CUSTOMER_NAME" + ") VALUES ...

1
votes
0 answers

inserting data in multiple tables

Dear ALL, I have an issue with SQL queries but it is directly related to ADO.NET objects for our ASP page. I am using C# to create a customer service portal to track telephone calls from our customers. I am creating the database using sq ...

0
votes
1 answers

ADO.NET displaying items in DropDown list control

Hi, I am using MS SQL for database. I have made appropriate connection string and able to connect to the database. I have created an EMPLOYEE table and in my sql command I have issued: SELECT First_Name, Last_Name FROM EMPLOYEE. Us ...

0
votes
0 answers

Parameterized Query and ADO.NET

Hi guys, I am new to C# and maybe this is too much to ask but I am stuck with a simple database application I have 2 tables in the datasource in Visual Studio (Customer table and Product table) On my form, I have two drop boxes: ' ...

0
votes
0 answers

Need Help about ADO.Net Transaction

I develop C# window application with Microsoft SQL Server 2005 sp3. My Application has ploblem while one of client save Order Document. Another client cannot select data from Order table util saving process is complete. I used Transactio ...

1
votes
1 answers

What is the difference between ReadCommited and Serializable Enumeration in Isolation Level?

sanjib
226

Is there really any difference between ReadCommited and Serializable Enumeration in Isolation Level? Ain't both used to avoid errors like dirty read?

Feedback