Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# guid and SQL uniqueidentifier

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)

like image 783
Daniel Avatar asked Sep 16 '09 22:09

Daniel


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Why is C named so?

Quote from wikipedia: "A successor to the programming language B, C was originally developed at Bell Labs by Dennis Ritchie between 1972 and 1973 to construct utilities running on Unix." The creators want that everyone "see" his language. So he named it "C".


1 Answers

Here's a code snippet showing how to insert a GUID using a parameterised 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();         }     } 
like image 105
DLKJ Avatar answered Sep 22 '22 17:09

DLKJ