¡@

Home 

c# Programming Glossary: sqlserver

.NET SqlConnection class, connection pooling and reconnection logic

http://stackoverflow.com/questions/1058591/net-sqlconnection-class-connection-pooling-and-reconnection-logic

is using the SqlConnection class in .NET to talk to a SQLServer database. It is intermittently failing with this error ExecuteReader.. of the problem is that something happens to the underlying SQLServer database during the lifetime of the connection that causes the.. an appropriate way to query that Finally I have a test SQLServer instance set up with full access rights how can I go about reproducing..

SQLite keeps the database locked even after the connection is closed

http://stackoverflow.com/questions/12532729/sqlite-keeps-the-database-locked-even-after-the-connection-is-closed

I open the connection read some data from a SQLServer database insert that data into SQLite through SQLiteDataAdapter..

How DataReader works?

http://stackoverflow.com/questions/1383920/how-datareader-works

should not work if there is no connection to the SQLServer. I experimented this scenario. I execute the ExecuteReader then.. this scenario. I execute the ExecuteReader then stop the SQLServer Service and tried to iterate through the DataReader. What I..

Sharing sessions across applications using the ASP.NET Session State Service

http://stackoverflow.com/questions/2868316/sharing-sessions-across-applications-using-the-asp-net-session-state-service

something like this in there web.config sessionState mode SQLServer sqlConnectionString Data Source . SQLEXPRESS User Id test Password..

How to catch SQLServer timeout exceptions

http://stackoverflow.com/questions/29664/how-to-catch-sqlserver-timeout-exceptions

to catch SQLServer timeout exceptions I need to specifically catch SQL server..

What is good C# coding style for catching SQLException and retrying

http://stackoverflow.com/questions/4821668/what-is-good-c-sharp-coding-style-for-catching-sqlexception-and-retrying

SQLException and retrying I have a method that calls a SQLServer function to perform a free text search against a table. That..

Unable to serialize the session state

http://stackoverflow.com/questions/5889240/unable-to-serialize-the-session-state

to serialize the session state. In 'StateServer' and 'SQLServer' mode ASP.NET will serialize the session state objects and as.. to serialize the session state. In 'StateServer' and 'SQLServer' mode ASP.NET will serialize the session state objects and as.. to serialize the session state. In 'StateServer' and 'SQLServer' mode ASP.NET will serialize the session state objects and as..

Web app blocked while processing another web app on sharing same session

http://stackoverflow.com/questions/9426673/web-app-blocked-while-processing-another-web-app-on-sharing-same-session

are sessionState allowCustomSqlDatabase true mode SQLServer stateConnectionString tcpip 127.0.0.1 42424 sqlConnectionString.. TravelDesk execution complete do the session will lock in SQLServer Please guide me to resolve this issue. c# asp.net session session..

Why Interface Layer/Abstract classes required in our project? [closed]

http://stackoverflow.com/questions/9702032/why-interface-layer-abstract-classes-required-in-our-project

Layer public abstract void abc Function in Data Access SQLServer Layer public override void abc Connection with database Question..

Since there is no Sqlserver array parameter, what's the best way to proceed?

http://stackoverflow.com/questions/1014571/since-there-is-no-sqlserver-array-parameter-whats-the-best-way-to-proceed

best way to proceed I need to create multiple records in sqlserver each with the same value in column A but with a unique value.. for column B in an array. I am using VS2008 aspnet c# 3.5 sqlserver 2005. Am I better off Option 1. Making 1 call to a stored procedure.. off Option 1. Making 1 call to a stored procedure in sqlserver from c# code and then doing all the processing work in the stored..

Compare dataset or a better idea

http://stackoverflow.com/questions/1014906/compare-dataset-or-a-better-idea

set from another. 1st dataset proper records coming from sqlserver with column name id subsNumber 2nd dataset proper and inproper..

What is the equivalent of JPA in .NET?

http://stackoverflow.com/questions/2756307/what-is-the-equivalent-of-jpa-in-net

would like to use something like jpa with C# to mysql and sqlserver. c# .net jpa share improve this question Isn't JPA just..

Sharing sessions across applications using the ASP.NET Session State Service

http://stackoverflow.com/questions/2868316/sharing-sessions-across-applications-using-the-asp-net-session-state-service

idea is both apps use native .net sessionState stored in sqlserver. By using the same machine key and making a small tweak to a..

Why Interface Layer/Abstract classes required in our project? [closed]

http://stackoverflow.com/questions/9702032/why-interface-layer-abstract-classes-required-in-our-project

enterprise context. So now you need to develop access to sqlserver oracle webservice .... In all these changes you will need to..

How to restore a database from C#

http://stackoverflow.com/questions/1466651/how-to-restore-a-database-from-c-sharp

new ServerConnection serverName userName password Server sqlServer new Server connection sqlRestore.Action RestoreActionType.Database.. dataFile databaseName .mdf Database db sqlServer.Databases databaseName RelocateFile rf new RelocateFile databaseName.. databaseName _log logFile sqlRestore.SqlRestore sqlServer db sqlServer.Databases databaseName db.SetOnline sqlServer.Refresh..