I want to create a GUID and store it in the DB.

In C# a guid can be created using Guid.NewGuid(). This creates a 128 bit integer. SQL Server has a uniqueidentifier column which holds a huge hexidecimal number.

Is there a good/preferred way to make C# and SQL Server guids play well together? (i.e. create a guid using Guid.New() and then store it in the database using nvarchar or some other field ... or create some hexidecimal number of the form that SQL Server is expecting by some other means)

link|improve this question

10  
Do NOT use nvarchar, use uniqueidentifier. – Tor Haugen Sep 16 '09 at 22:55
feedback

6 Answers

up vote 11 down vote accepted

SQL is expecting the GUID as a string. The following in C# returns a string Sql is expecting.

"'" + Guid.NewGuid().ToString() + "'"

Something like

INSERT INTO TABLE (GuidID) VALUE ('4b5e95a7-745a-462f-ae53-709a8583700a')

is what it should look like in SQL.

link|improve this answer
14  
If you use SqlParameter, you don't have to convert the GUID into a string. – Pierre-Alain Vigeant Sep 16 '09 at 22:58
2  
To be clearer to everyone, I'm not suggesting that the sql specified should be used as demonstrated from C# with string concatenation. The crux of the question, I believe, is what form does a SQL UNIQUEIDENTIFIER LITERAL look like. The literal looks just like a string but with a special format. The two code snippets demonstrate what the literal looks like in 2 languages. I agree with DLKG that using a parameterized query and passing the guid as a typed parameter is both more performant as well as preventing potential SQL Injection attacks. – Peter Oehlert Sep 16 '09 at 23:52
@Peter: the question was literally "Is there a good/preferred way to make C# and SQL Server guids play well together?" In your code sample, C# is stealing SQL Server's lunch money. :P – MusiGenesis Sep 18 '09 at 0:31
feedback

Here's a code snipit showing how to insert a Guid using a parametrised query:

    using(SqlConnection conn = new SqlConnection(connectionString))
    {
        conn.Open();
        using(SqlTransaction trans = conn.BeginTransaction())
        using (SqlCommand cmd = conn.CreateCommand())
        {
            cmd.Transaction = trans;
            cmd.CommandText = @"INSERT INTO [MYTABLE] ([GuidValue]) VALUE @guidValue;";
            cmd.Parameters.AddWithValue("@guidValue", Guid.NewGuid());
            cmd.ExecuteNonQuery();
            trans.Commit();
        }
    }
link|improve this answer
guidValue should be @guidValue – Peter Oehlert Sep 16 '09 at 23:53
Fixed the typo, cheers. – DLKJ Sep 17 '09 at 8:28
1  
+1 for demonstrating the correct way to do it, rather than just answering the question literally. – Christian Hayter Oct 14 '09 at 9:44
Very useful. I was trying to parse a string etc... inside the database. This works great. Cheers, ~ck – Hcabnettek Sep 21 '10 at 23:25
feedback

There is a SQL type for this: uniqueidentifier.

link|improve this answer
Yep, its in the question :) I'm asking how you make uniqueidentifier play well with C# Guid.NewGuid() – Daniel Sep 16 '09 at 22:51
Didn't you say in your question that you're using nvarchar as the field's data type? – Jay Riggs Sep 16 '09 at 22:53
You will use the uniqueidentifier type in SQL Server, then do as Peter demontrates above to store values to it. – Tor Haugen Sep 16 '09 at 22:54
Perfect, thanks Tor – Daniel Sep 16 '09 at 22:56
2  
Have to agree with Pierre-Alain Vigeant - the method in Peter's answer is not the best way to do this. – MusiGenesis Sep 16 '09 at 23:04
feedback

Store it in the database in a field with a data type of uniqueidentifier.

link|improve this answer
feedback

You can pass a C# Guid value directly to a SQL Stored Procedure by specifying UniqueIdentifier for the parameter's SqlDbType.

new SqlParameter("@Guid", guid) { SqlDbType = SqlDbType.UniqueIdentifier }

Your method may look like this (provided that your only parameter is the Guid):

public static void StoreGuid(Guid guid)
{
    using (var cnx = new SqlConnection("YourDataBaseConnectionString"))
    using (var cmd = new SqlCommand("StoreGuid", cnx) { CommandType = CommandType.StoredProcedure })
    {
        cmd.Parameters.Add(new SqlParameter("@guid", guid) { SqlDbType = SqlDbType.UniqueIdentifier });
        try
        {
            cnx.Open();
            cmd.ExecuteNonQuery();
        }
        catch (Exception ex)
        {
            throw new Exception("wtfguid", ex);
        }
    }
}
link|improve this answer
feedback
            // Create Instance of Connection and Command Object
            SqlConnection myConnection = new SqlConnection(GentEFONRFFConnection);
            myConnection.Open();
            SqlCommand myCommand = new SqlCommand("your Procedure Name", myConnection);
            myCommand.CommandType = CommandType.StoredProcedure;
            myCommand.Parameters.Add("@orgid", SqlDbType.UniqueIdentifier).Value = orgid;
            myCommand.Parameters.Add("@statid", SqlDbType.UniqueIdentifier).Value = statid;
            myCommand.Parameters.Add("@read", SqlDbType.Bit).Value = read;
            myCommand.Parameters.Add("@write", SqlDbType.Bit).Value = write;
            // Mark the Command as a SPROC

            myCommand.ExecuteNonQuery();

            myCommand.Dispose();
            myConnection.Close();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.