Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: thedougster
  • Content: Threads
  • Order by date
  1. thedougster

    creating threads in C#

    Can someone please break down a simple statement for a relative newbie? Thread firstThread = new Thread (new ThreadStart (Method1)); In other words, what is happening at each stage here: new ThreadStart (Method1) new Thread (new ThreadStart (Method1)) Thread firstThread = new Thread (new...
  2. thedougster

    determining if an SQL database exists, etc.

    Could someone please give me the simplest possible C# code snippets / SQL queries to determine whether: * a given SQL database exists, * a given existing SQL database is accessible, and * a given table exists within a given existing SQL database? Thanks for whatever help anyone can provide.
  3. thedougster

    the Brigadoon of databases

    I've been working with SQL2008 AdventureWorks; specifically database AdventureWorks, table Person.Contact. I experimented with using a DataGrid control's DataSource property to add a new project data source to the DataGrid, although my code was written to access the database without using a...
  4. thedougster

    help with BindingSources

    I need some help with BindingSources (in C#). This is what I'm working on: From the C# tutorial at Programmer's Heaven (http://www.programmersheaven.com/2/Les_CSharp_13_p9): private void btnLoadData_Click(object sender, System.EventArgs e) { string connectionString = "server=P-III...
  5. thedougster

    help with BindingSources

    I need some help with BindingSources. This is what I'm working on: From the C# tutorial at Programmer's Heaven (http://www.programmersheaven.com/2/Les_CSharp_13_p9): private void btnLoadData_Click(object sender, System.EventArgs e) { string connectionString = "server=P-III...
  6. thedougster

    where's the dgDetails class?

    I've tried, but I haven''t been able to find the namespace containing the dgDetails class for the DataGridView control. Can anybody tell me where it is? BTW, this is for C#.
  7. thedougster

    proper Save location for SQL stored procedures

    I saved a few stored procedures in SQL Server Management Studio. The default Save location, which I accepted, was C:\Documents and Settings\BobLewiston\My Documents\SQL Server Management Studio\Projects. (And yes, each stored procedure was in the form of an .sql file, and I assigned each file...
  8. thedougster

    how to “store” stored procedures

    I've written a few SQL stored procedures in a text editor. But how do I actually "store" them in (add them to?) a database using SQL Server 2008 Management Studio Express? I've tried to research this topic in Management Studio's onboard Help, but apparently Help assumes I know more about the...
  9. thedougster

    dataAdapter.Update / SQL PasswordHash NULL problem

    Some of you may have seen my earlier thread “PasswordHash NULL problem”. I’ve started a new thread because investigation has shown that the problem is actually quite different than I previously stated. Also please note that this is unrelated to another of my previous threads, “dataAdapter.Update...
  10. thedougster

    PasswordHash NULL problem

    When I try to save a new (inserted) record in an SQL database, I get the following System.Runtime.InteropServices.ExternalException message: I have to either find out how to insert an appropriate value into the PasswordHash column OR make SQL Server Management Studio allow NULL in the...
  11. thedougster

    How do I get PasswordHash value?

    When I try to save a new (inserted) record via the following code: DataRow row = dataTable.Rows [currRec]; // update data in DataSet from data entry WinForm row.BeginEdit (); row ["Title"] = txtTitle.Text; row ["FirstName"] = txtFirstName.Text; row ["MiddleName"] = txtMiddleName.Text...
  12. thedougster

    displaying an auto-incremented SQL identity column

    Most databases have multiple users. For these databases it is a good idea to auto-increment the identity column. I understand that an SQL identity column is not incremented until the newly-created record is inserted. I guess this means the identity column is incremented when you actually...
  13. thedougster

    auto-increment identity column

    Using Visual C# 2008 Express and SQL Server 2008 Express, I would like to insert new records into database "AdventureWorks", table "Person.Contact". To my surprise, this table's int-value identity column "ContactID" does not appear to be auto-increment. I don't know how to confirm for sure that...
  14. thedougster

    dataAdapter.Update problem

    I can read in an SQL table ("Person.Contact") from AdventureWorks and step through it one row at a time, but when I try to save a record, either one I'm inserting or one I'm editting, I get the following exception: Incorrect syntax near ','. Must declare scalar variable "@ContactID". Here's...
  15. thedougster

    collating records from different SQL Server tables

    I'm starting to learn SQL Server. As part of that effort, I'm experimenting with accessing AdventureWorks sample databases. In database AdventureWorks, I've been accessing table Person.Contact. Although in that table there are columns for a phone number and an email address, there are no...
  16. thedougster

    SQL Server connection problem

    I’m trying to learn how to connect to an SQL Server database (I’m using the AdventureWorks sample database), but I’m having problems. Here’s the code I’m using: // define connection string for database server string connectionString = "server=<server name>; database=AdventureWorks; uid=<user...
  17. thedougster

    how to copy entire Visual C# solution?

    Is there any way to copy an entire Visual C# solution in such a way that it works? If you just copy it and rename it, it gives an error message that it's been renamed and therefore it refuses to work.
  18. thedougster

    How to uninstall AdventureWorks sample databases?

    How can I uninstall the AdventureWorks sample databases? They're not an application, so I can't do it via Add / Remove Programs or a downloaded uninstaller. They're apparently corrupt, and they've been trouble from the git-go. The machine crashed when installing them. When I try to access them...
  19. thedougster

    How to import &quot;.mdb&quot; files into SQL Server 2008?

    Assuming it can be done (as I've been told): How do I import ".mdb" (MS Access / OleDb) files (specifically, Northwind sample database files) into SQL Server 2008 (Express with Advanced Features)?
  20. thedougster

    Can SQL Server 2008 access Northwind or Pubs databases?

    I've installed SQL Server 2008 Express with Advanced Features, but I've been having so-far insurmountable problems installing the AdventureWorks sample databases. However, I've successfully installed the Northwind sample databases, and I've downloaded the installer for the Pubs sample databases...

Part and Inventory Search

Back
Top