Represents an open connection to a SQL Server database.

learn more… | top users | synonyms

1
vote
2answers
50 views

returning a null value from database as a string value

I am extracting records from a database and some of the fields do not have values (null). I would like to extract them as string values, how can I do this? I have tried the following but get an ...
0
votes
1answer
28 views

Issues using Sqlconnection with Visual Studio Express 10

I'm trying to make a mock inventory/customer database program for my employer. I'm new to C# and SQL, but not totally new to programming, with some basic knowledge of C++, php, and Basic, I went into ...
0
votes
1answer
24 views

Share DB-connection through service in .NET?

beginners question: suppose I have a server on which multiple .NET services are running, but they would all use the same (configurable) sql-db connection parameters. What would be the best way to let ...
0
votes
2answers
21 views

how to execute sqlconnection and sqlcommand?

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Windows.Forms; using System.Data; namespace FileName { class ...
0
votes
1answer
43 views

Trying to reconnect to the database

The application takes a lot of database queries. Request is created after the event made by the user or through the use of several timer (10 sec tick). The problem occurs when the database server ...
0
votes
1answer
46 views

SQL Login failing on SQL Server 2008 for Remote Connections

This snippet of C# code is used to connect to a SQL Server 2008 instance (default, not named instance): using (SqlConnection conn = new SqlConnection(sqlConnType)) { conn.Open(); using ...
0
votes
3answers
110 views

Inserting multiple rows in single command using asp.net

I have educational qualification block in my asp.net form and one set of qulification will be inserted as row in the table. so i want to insert these sets, suppose 3 sets of qualification in a single ...
1
vote
2answers
73 views

SQL Server 2008R2 SSRS Reports Cannot Connect To Datasource: Cannot create a connection to data source

We're attempting to deploy an existing SQL Server/SSRS configuration to a new set of hardware. SSRS is running on the same server as the SQL Server database we're trying to get reports from. Whenever ...
0
votes
1answer
26 views

Calling connection string from connection.cs file

Is there any problem with the code?? Its not working and throwing an exception object ref. not set to an instance of object.. The exception is in datageneric.cs file at codeline string ...
0
votes
1answer
38 views

The ConnectionString property has not been initialized sqlcommand yet code still works

I've always been a fan of "if it ain't broke dont fix it" but my code, although functioning, is throwing the connectionstring property has not been initialized message. similar posts suggest the ...
0
votes
0answers
20 views

Using multiple network adapters to communicate within the same application

Scenario: A) My desktop PC; B) A remote Server running SQL Server Express with only a VPN connection available and with all outbound connections closed by the firewall (no possibility to open, I'm not ...
0
votes
1answer
38 views

Cannot connect to Sql Server via Android Test

I have created simple android tests with UiAutomator. In these tests I want to confirm that some data were added in the database. In my pc I can connect to the database, but in the virtual android ...
0
votes
0answers
11 views

Setting ANSI_OFF in SQL Server for a large transaction

I have to push a large number of SQL statements (several tens of thousands) through a transaction on an SQL Server connection. Many of these statements may require a string value to be truncated. ...
-1
votes
0answers
72 views

SQL Server: Login failed for user

I have a problem connecting to a SQL Server database from my ASP.NET web application. There are a good number of similar posts here, but none have helped me. This issue has not only me but the rest of ...
0
votes
1answer
50 views

How to create an SqlConnection in C# to point to UDL file

I have a .udl (Universal data link) file in my project. Now I want to create an SQL Connection that should point to this particular file. SqlConnection object expects a connection string, how can we ...
2
votes
1answer
53 views

No Way to Close SqlConnection

I know this is an old question. Thousands of statements on Google say Connection will be closed in Dispose(). However, who did really verify that? I found that a SqlConnection is no way to close. I ...
0
votes
1answer
66 views

ASP.NET Page keeps refreshing (VB.NET)

Whenever I try this code the page remains refreshing. Imports System.Data.SqlClient Imports System.Data Partial Class ProjectReport Inherits System.Web.UI.Page Private myTotal As Decimal = ...
0
votes
1answer
32 views

SQLCommand causing duplicate Stored Proc executions

I got an issue that I am completely stumped on. Part of my application calls a Stored Proc using SQLConnection/SQLCommand. I'm hitting a SQL 2005 database and I am able to make the connection and ...
1
vote
1answer
47 views

Can a Sql Connection remain open if a second using statement exceptions

Given the following: try { using (var connection = new SqlConnection(_connectionString)) { connection.Open(); using (SqlCommand queryCommand = new SqlCommand(QueryString, ...
-2
votes
1answer
128 views

Moving data from one sql server instance to another C# [closed]

This all needs to be done programmatically in C#: I need to take data in one database in one instance and move it to another database in a different sql server instance. If this succeeds, I need to ...
-1
votes
1answer
73 views

sqlconnection error during installation in C#

i created a software,which worked fine in Visual Studio. but when i deploy it on any computer it gives the following error while trying to make connection to the database:- ************** Exception ...
2
votes
4answers
97 views

Repeated SQL Connections, should I create a class?

I'm still quite new to c# and I have multiple count queries on a single page. I don't need to use these queries anywhere else so have avoided creating a class. Still though, I can help but think there ...
0
votes
1answer
150 views

ASP.NET VB.NET - Page doesn't load

Can anyone tell me why the page keeps loading (never loads) when I try to run this this code? Imports System.Data.SqlClient Partial Class Admin Inherits System.Web.UI.Page Protected Sub ...
2
votes
3answers
347 views

C# Form not inserting values into SQL Server database

I have a simple create a new user form which takes values from two text boxes, username and password. The button2 click event should take these values and insert them into the Users table in the ...
1
vote
3answers
78 views

SQL connection commands doesn't change the data

How can I know whether the table in database is affected after these instructions? I try to show the query result in console but it doesn't show anything. static void Main(string[] args) { ...
0
votes
3answers
61 views

How to work with many connection in c# and ASP.NET?

This is how I do my connection SqlConnection conn = new SqlConnection(connectionstring); conn.open(); SqlCommand comando = new SqlCommand(/*my query update/delete/insert/select o execute sp*/,conn); ...
0
votes
1answer
23 views

Qt QSql class error

I'm trying to create a connection to a database in Qt 5.0 but I get these errors! In function `_tcf_0': error: undefined reference to `_imp___ZN12QSqlDatabaseD1Ev' error: undefined reference to ...
0
votes
1answer
36 views

SQL Connection to different machine [closed]

I don't have SQL Server Management Studio on my PC but I wish to connect SQL Server Management Studio to another machine which is on same network. How to do it?
0
votes
0answers
147 views

How to use a Log In Control on ASP.NET using C# and the AdventureWorks Database?

I am trying to create a simple web site with Log In control for the Adventure Works Database (free database online). I have a code that edited a user's password to his first name, so Username: ...
1
vote
2answers
84 views

ExecuteNonQuery results in “Connection property has not been initialized.” [duplicate]

I am using VS2010 and SQL Server 2008 Management Studio protected void btnsave_click(object sender, EventArgs e) { SqlConnection myConnection = ...
1
vote
1answer
111 views

C# SqlConnection inside a loop

first time on stackoverflow. I'm learning how to manage SqlConnection in my WebForm pages, and I want to reach the best practice to do that. In my specific case, I have a loop and there's no way for ...
1
vote
2answers
45 views

connection state is closed when using a property

I'm trying to use a Using() statement with a SqlConnection. I've made the SqlConnection a page property like so... public SqlConnection baseConnection { get { return new ...
2
votes
2answers
73 views

How can I measure login time on a SqlConnection while using pooling?

I'd like to capture some statistics about an application using SqlConnection, specifically how long its spending physically logging into the server. The simple approach would be something like: ...
0
votes
0answers
41 views

What's happening inside SqlDataAdapter.Fill()?

SqlDataAdapter.Fill() seems to do a bunch of different things under the covers. I'm using it to populate a dataset, but how is it managing the sqlConnection and sqlCommand objects? If there is a ...
0
votes
1answer
29 views

how to change the account asscoiated with sql server

i have a problem with my sql server 2008 i couldnt connect to any sql server instance after changing the user name over domain. so i have a domain user it was a local account from my domain account ...
0
votes
0answers
85 views

execute sqlcommand query in winform

I'm beginner in C#, I learned how to execute query in ASP.net(C# web form) and it works correctly. But when I try to apply sqlconnection and sqlcommand to execute query in Winform it don't work. it's ...
0
votes
0answers
26 views

Parameter is notvalid : cant open the image in picture box?

This is My Code : My DB Structure is (Table Name : tblImage) [Field==>>imageId, imagePath, imageImage] SqlConnection sqlcon; SqlCommand sqlcmd; MemoryStream mstream; private void ...
1
vote
1answer
307 views

Which is better to use Invoke-SQLCMD, SMO or SQLConnection

I've been creating a few power shell scripts and Iv'e mainly been using Invoke-Sqlcmd as a way to query the database or input .sql files, but I have been having some trouble with containing access and ...
0
votes
5answers
206 views

in c# global connection to be used in all classes

I've a connection string saved to Properties.Settings.Default, i need to use an sql connection in all classes without having to declare it everytime, so how should it be declared?
0
votes
1answer
101 views

Vb.net Connection to MySql

I'm using vb.net windows form application, in which I have used the connection string as follows: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
0
votes
0answers
186 views

Connect Faillure to SQL Server 2008 Express using Visual Studio 2010

I researched this at length. Lot of related answers, but no solution yet. As you can see in the image, in VS2010 I have three SQL Server databases and an Access database ready to connect. The first ...
0
votes
0answers
82 views

How should I properly be retrieving database records via SqlConnection?

I'm sure this question has been asked many times, and I dug through a few of the similar ones but couldn't find one that really flushed it out as much as I'd have liked. I have an application that ...
0
votes
2answers
238 views

Query Multiple Databases SQL Server

I'm having a problem running a query across multiple databases on an Azure SQL Server. This is the function I have made to return a DataTable from the query once it has been executed. The function ...
4
votes
2answers
142 views

SqlConnection ignores default schema for user

Apologies for this being so long, but I have seen so many questions that include too little info... If someone sees my error(s) in the first few lines, I will be delighted... I have an SQL Server ...
-1
votes
3answers
48 views

Issue with calling two methods in data access method

I have this method: public bool ActivateUser(string username, string key) { var user = this.GetUser(username, true); if (user != null) { ...
1
vote
2answers
129 views

“using” statement in SqlDataReader?

Which of the following two examples are correct? (Or which one is better and should I use) In the MSDN I found this: private static void ReadOrderData(string connectionString) { string ...
0
votes
1answer
77 views

SqlConnection by Method

I'm trying to implement a method that will provide the SqlConnection, how should I do it? public class DAL { public bool dbCon() { string comboValue; try { ...
2
votes
1answer
161 views

Using SQLConnection across multiple methods ('using' keyword yes or no)

I want to re-use the same SQLConnection accros different methods within the class. What I'm doing right now (testing only) is creating and opening a connection in the constructor: SQLConnection ...
0
votes
4answers
462 views

“Login failed for user” C# with SQLConnection

I've been trying to connect to my database (which is on the same computer as my code) through my C# code. The problem is I keep getting the "Login failed for user " "" error... I admit that my ...
0
votes
1answer
678 views

Adding data to data row of database in c#

I am facing a little problem in my code to add data to sql database attached with my program in ASP.net/C#. Here's code: string ConnectionString = ...

1 2 3 4 5 8