Tagged Questions

Microsoft ADO.NET System.Data.SqlClient, contained in System.Data.dll, used for connecting to SQL Server from .NET applications.

learn more… | top users | synonyms

5
votes
4answers
3k views

Report Viewer - Request for the permission of type SqlClientPermission failed

I am using the ReportViewer control from Visual Studio 2008 in Local Mode with objects as the data source. My classes are mapped to data tables in my database. In the objects, it loads related objects ...
4
votes
4answers
153 views

Is there an alternative tool to Microsoft Sql Server Management Studio?

There have been some Microsoft Server Service/Instance installed on a machine, but without Microsoft Sql Server Management Studio. Is there an alternative tool to Microsoft Sql Server Management ...
3
votes
3answers
465 views

How long should the connectionString timeout be in ASP.NET applications? (sqlclient)

In my ASP.NET application, I have a sqlclient connectionstring in my web.config file, What is the recommended timeout setting for production environment? Default is 15 seconds. My web farm and ...
3
votes
6answers
2k views

When should I be using Odbc, OleDb, SQLClient? What are the trade-offs

I am starting off with a SQLServer database. So it would seem that I should use System.Data.SqlClient namespace. But, there is a chance that we might shut down our SqlServer database and go to MySql ...
2
votes
6answers
147 views

Creating a C# application without SQL Server

I just started working with SQL and now what I need is to make a database for my C# application which will save user names and passwords. Think of it like a password reminder. Anyway, what I think I ...
2
votes
1answer
127 views

What does SQL Server return to C#

We can easily work with SQL Server databases with the help of System.Data.SqlClient library in C#. We can return values from stored procedures or we can write sql commands by hardcoding them in C# ...
2
votes
0answers
320 views

when to specify providerName=“System.Data.SqlClient” in a connection string

I had an issue with a windows service running under [NT AUTHORITY\LOCAL SYSTEM] whereby the service could not connect to a database. Login failed for user 'NT AUTHORITY\LOCAL SERVICE'. Reason: ...
2
votes
1answer
908 views

Why can I connect to sql server 2008 via odbc but not through vb.net code?

I'm supporting an old vb.net program whose database it connected to was moved from SQL Server 2005 to SQL Server 2008. Is there a setting on SQL Server 2008 which will allow ODBC connections to ...
2
votes
2answers
135 views

Does Sql Server cached compiled queries and execution plan across transactions?

Folks, I'm using the best-practice of prepared sql statements to execute many Inserts/Updates that vary by the same parameters. I have two choices in my design: 1. all of the work gets done in a ...
2
votes
4answers
399 views

Why does this code cause an error?

I have been looking for hours on how to connect to my local SQL database. I can't believe its been this difficult. Anyway, i think I am more on the right track with this code. <% Dim ...
2
votes
3answers
628 views

sqlclient - connection timeout or command timeout

I get the following error upon running a query. * System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not ...
2
votes
3answers
1k views

SQL Server Command Timeouts Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding

we've had a ASP.NET web application deployed for a number of years now.... last week we migrated to a slightly slower server to save some money. Now we're frequently getting command timeouts: Timeout ...
2
votes
2answers
3k views

.Net Windows Service Throws EventType clr20r3 system.data.sqlclient.sql error

I have a .Net/c# 2.0 windows service. The entry point is wrapped in a try catch block that notifies me of problems and allows the service to continue operating normally yet when I look at the ...
2
votes
3answers
3k views

C# Update Table using SqlCommand.Parameters

I'm trying to update an MSSQL table using SqlCommand, I think it's a syntax error with my T-SQL, but here is what I have so far: SqlCommand sqlCmd = new SqlCommand("UPDATE yak_tickets SET email = ...
2
votes
1answer
142 views

Linq to SQL: Ammend command before submission to database

Is there a hook somewhere within Linq to SQL that would allow me to manually modify a command before it is sent to the database? Specifically, I am trying to introduce the WITH ...
2
votes
1answer
1k views

How to DataSet.Fill with DateTime values defaulting to DateTimeKind.Utc?

I have an application which would read data from SQL and send it via WCF to a client app, in a manner similar to this: SqlDataAdapter da = new SqlDataAdapter( cmd ) DataSet ds = new DataSet(); ...
2
votes
1answer
477 views

Multiple Asynchronous SqlClient Operations - Looking for a good example

I have been using Asynchronous operations in my WinForms client since the beginning, but only for some operations. When the ExecuteReader or the ExecuteNonQuery completes, the callback delegate fires ...
1
vote
2answers
40 views

SqlClient Connection Timeout

I am writing some python to interact with a MSSQL server that I have access to. The issue I am currently having is that one of my transact statements is not getting past the timeout period that is ...
1
vote
5answers
60 views

Is it possible to pass a parameter that is DB.null and set a value in the database equal to that?

I'm pulling data from a database (1 record) and putting each value in a textbox or dropdownlist. Some of these values are DB.null. If they are, I convert each of them to "" (blank). However, once ...
1
vote
0answers
183 views

System.Data.EntityException: The underlying provider failed on Commit

Using Entity Framework, I received a number of the following exceptions last night in one of my applications: System.Data.EntityException: The underlying provider failed on Commit. ---> ...
1
vote
1answer
656 views

Exception: type initializer for 'system.data.sqlclient.sqlconnection'?

I couldn't figure out what is the problem for this exception. The type initializer for 'system.data.sqlclient.sqlconnection' threw an exception First attempt: I was using the WCF Service to make ...
1
vote
3answers
60 views

Is there any way to get the table hierarchy from a connection string in c#?

I have a current requirement to determine the table hierarchy from a sql statement within c#. For example, consider the following sql statement: Select Table1.*, Table2.* from Table1 left join ...
1
vote
1answer
92 views

.NET - SqlConnectionStringBuilder.AsynchronousProcessing

Maybe a silly question, but I'm wondering why, when using SqlConnectionStringBuilder, I would ever want to make .AsynchronousProcessing false. I'm sure it's my inexperience, but I can't figure out ...
1
vote
1answer
254 views

SQL Server Command Timeout - executable file only

I'm receiving an error message: System.Data.SqlClient.SqlException: Timeout expired. I've traced this back to a command timeout which by default is set to 30 seconds. Sure enough, when ...
1
vote
1answer
581 views

Intermittent System.IndexOutOfRangeException when reading a field from IDataReader

I have a very weird problem in code that I would not expect to ever fail. It is a website with some traffic but not that huge based on AspDotNetStoreFront. Site intermittently crashes when trying to ...
1
vote
2answers
155 views

timeout sql server on a fast query

I'm 100% sure that this question is a duplicate but I searched for a few hours and I didn't find anything. My environment : windows server 2003, sql server 2005 , .net 2.0 (c#) My problem : When I ...
1
vote
1answer
301 views

Sql UPDATE command has no effect and throws no error only in web page, same code in console project works

I have a .NET 3.5 web application which has a set of classes handling entity persistence. The INSERT and SELECT prepared commands work. However the UPDATE command never works (no database record is ...
1
vote
4answers
748 views

SqlException: Timeout Expired

I have a process where two threads are continuously executing sql queries on the same tables. Is there any chance that one of these two threads gets Timeout error? If so, what is the best practice to ...
1
vote
1answer
234 views

How to view the last ran sql query from SqlClient data provider on Sql server 2000?

Although I have been able to see the last ran query which is a Stored Procedure executed but I didn't get the parameters values with which the SP was invoked. Rather I got the following: ...
1
vote
1answer
167 views

“Cannot open user default database” error with “User Instance=True”

I have a desktop application that uses Sql user instancing. This is my connection string: "Data Source=.\SqlExpress; AttachDbFilename=C:\path\file.mdf; Integrated Security=True; User Instance=True; ...
1
vote
1answer
555 views

Request for the permission of type 'System.Data.SqlClient.SqlClientPermission, System.Data

I created an assembly containing WCF service code and dropped into another web project. When I try to invoke a service method, I get the following inner exception: Request for the permission of type ...
1
vote
3answers
2k views

SqlCommand() ExecuteNonQuery() truncates command text

I'm building a custom db deployment utility, I need to read text files containing sql scripts and execute them against the database. Pretty easy stuff, so far so good. However I've encountered a ...
1
vote
1answer
535 views

SqlClient Xml Output parameter “was not supplied”

I receive an SqlException when running the following code. "Procedure or function 'usp_Search' expects parameter '@pxmlSearchOutput', which was not supplied." My parameters + request. using ...
1
vote
3answers
740 views

ADO.NET SqlClient connection string - Data Source syntax

Is there any official write-up what forms can Data Source field take in sql server connection string? I'm aware of following forms: SERVER SERVER\Instance tcp:SERVER,port nb:SERVER nb:SERVER\Instance ...
1
vote
3answers
808 views

SqlClientPermission failure in assembly loaded via reflection

I am having a really tough time with a problem. I have a web application that I have just modified that allows customers to supply custom assemblies that they can use to hook into an entity save ...
1
vote
1answer
740 views

DbParameter IsNullable functionality?

I have not worked with parameters in ADO.Net very much. I'm writing a custom .Net data provider (modeled on SqlClient), and have to implement the IsNullable property in my parameter class, which ...
1
vote
1answer
556 views

Can you use ADO.NET SQLCommandBuilder with composite keys?

I have a database table with 6 columns. The primary key is a composite key made up of 5 of the 6 columns I am trying to use the SqlClient.SqlCommandBuilder.GetDeleteCommand to delete the row. ...
0
votes
1answer
21 views

Proper way to pass decimal and string as SqlParameter

I am creating reusable Data Access Layer for SQL Server for some projects. I have a problem with finding a proper way to pass .NETs decimal as a parameter to query. Most obvious way: ...
0
votes
2answers
32 views

SqlClient freeing resources is slow (but not every time)

I have this problem for a very long time, but we are about to release, and it must be fixed. I have an application, and in that application, I can call another (it can be the same application, but ...
0
votes
1answer
45 views

SQL authentication connection error, suspect characters in PW

In web.config: <add name="conn" providerName="System.Data.SqlClient" connectionString="Server=SERVERNAME; Initial Catalog=INITIALDB; UID=username; PWD=+abc-def(;" /> I ensured that the ...
0
votes
2answers
60 views

Multi threading SQL Client Write queries

I have a MS sql database (not server), my program reads file structure from my 2 TB external drive and saves the list a records in database. I write around 80k records every time and it takes a great ...
0
votes
2answers
27 views

Client Feedback when SQL Server Offline

We have a very data centric application, which is often run across networks with questionable connectivity. We want to feedback to clients when the database is offline, and display some kind of ...
0
votes
2answers
107 views

SQL Timeout through .NET code

So we have a process that runs and it calls our DB to get some data. When we run the proc that gets called through SQL Server Management Studio, it takes anywhere from 6 minutes to 15 minutes to run, ...
0
votes
3answers
72 views

SQL Server Database Connection String

I'm trying to write a program that will fetch data from a SQL Server database. The program is written on top of the .NET platform using C#. Furthermore, the program will be running on a Linux host ...
0
votes
1answer
487 views

A connection was successfully established with the server, but then an error occurred - provider: TCP Provider, error: 0

My web site was working flawless in the old Host, But now i Moved to a new host Please pay attention: The Old host was a VPS on the same host So i'v stoped paying him and now i'm hosting on the same ...
0
votes
1answer
26 views

How does SqlClient work in medium trust when

SocketPermission is not allowed and.. pinvoking is not allowed. I'm wanting to make sure my provider can work in medium/partial trust scenarios but trying to understand SqlClient first. It makes ...
0
votes
2answers
164 views

What is the difference between System.Data.SqlClient and SQLNCLI10.1 providers?

I'm connecting my application to a SQL Server 2008 database. What is the difference between the following providers: System.Data.SqlClient provider and SQLNCLI10.1 if there is any? Which one should ...
0
votes
1answer
134 views

My label's text isn't changing on page_load asp.net

I'm just starting out looking at asp.net. I've got this code that works in VB, but not in asp. I've put this in the page_load: Dim db_con As SqlConnection, ssql As String, db_cmd As SqlCommand, rdr ...
0
votes
2answers
307 views

C# and SQL Server connection

I can't seem to connect to my local database. Everytime I run it, it gives me a pop up blank windows (blank command line windows). What do I miss? using System; using System.Collections.Generic; ...
0
votes
1answer
29 views

Java Beginner: embeddable SQL clients with front end GUI,

I'm looking for Java SE embeddable sql clients with there GUI

1 2