A GUID (Globally Unique IDentifier) is a unique reference number used as an identifier in computer software.
0
votes
1answer
28 views
Change default directory in wix
How do I change the default installation directory (such as D:/ or E:/) in a WiX installer where the components have auto generated guid?
3
votes
2answers
142 views
F# [<Literal>] causes Invalid Program
I'm trying to match the Empty Guid using a Literal, and I can't figure out what's going on here:
let [<Literal>] EmptyGuid = System.Guid ()
let someFunction () = System.Guid.NewGuid () |> ...
0
votes
1answer
20 views
Using Guids as Identifies in resources
Is it possible to use Guids as the identifier in resource files?
In my program the user will be able to chose between some possible types when he creates an item. Which item was chosen is saved via a ...
1
vote
0answers
34 views
Linux command to generate new GUID?
Sometimes in bash scripting, i need to generate new GUID(Global Unique Identifier).
I already done that by a simple python script that generates a new guid: see here
#! /usr/bin/env python
import ...
0
votes
1answer
27 views
Use GuidRepresentation.Standard with MongoDB
I am implementing a custom IBsonSerializer with the official MongoDB driver (C#). I am in the situation where I must serialize and deserialize a Guid.
If I implement the Serialize method as follow, ...
1
vote
1answer
26 views
Generic method with implicit cast to Guid
I have actually a method for reading a value from a special data row of an Feature object:
private static T GetRowValueByMethod<T>(Feature feature, string fieldName)
{
return ...
1
vote
0answers
23 views
ASP.NET Mvc Guid Paramater Binding Slow
We are using MiniProfiler and on an action I noticed that before OnActionExecuting was called the time taken was between 75 and 150ms, the action was this:
public ActionResult Index(Guid guid, string ...
0
votes
2answers
60 views
Generate Guid on Serverside Entity Framework 5?
I am coming from a nhibernate background and I am wondering how can I generate the Guid automatically on the serer side and not make a round trip to make it on the database side?
In fluent nhibernate ...
3
votes
1answer
95 views
What is interactions of correlations for two interfaces with same GUID
I used to think that type safety in Delphi with regard to Interfaces is maintained by setting a unique (optional, but unique if filled in) GUID to it.
Then there came that question: Unspecified error ...
0
votes
1answer
40 views
Fluent NHibernate map GUID type property NOT Identity
I have a guid property in my entity and i want to map it to guid field in MS SQL.
public class SomeEntity
{
public virtual int Id { get; set; }
public virtual Guid GUID { get; ...
-1
votes
3answers
63 views
Adding Guid to a list<Guid> leads to an Error C#
I am trying to create a list of Guids but this error occurs:
{"Object reference not set to an instance of an object."}
My code is like this:
public List<Group> GroupList=new ...
-1
votes
0answers
49 views
ID fields in database tables or GUID?
I often use for the ID field for a quick access or a search operation and also use it as INDEX field, also it has such properties as PRIMARY_KEY, AUTO_INCREMENT.
But I wonder, how could be long INT ...
0
votes
1answer
24 views
How to compare the ldap GUID with ldap, getting guid witch ldap_get_entries
i want to use the guid from ldap accounts to indentify these accounts in an anpplication.
but i dont get it binary safe... if i compare these guids with php with double = the result is true if i use ...
0
votes
1answer
38 views
Convert GUID to varchar(32)
So I'm trying to copy data from one table to another and it so happens that there exist two similar columns from these two tables: table1.colx is a GUID so it is 36 characters in length in total due ...
3
votes
3answers
89 views
C# generate Guid that is unique(does not exist in a table in the database)
I have a table where the primary key is of type Guid. In my MVC application, I want to add a record to this table. I know of the Guid.newGuid() that creates a new Guid. This workds well but I have a ...
-1
votes
0answers
28 views
why does my COM dll keep registering with its old GUID?
I am trying to build a newer version of an existing ActiveX control (aka COM Dll). It is quite simple but for versioning reasons it shall get a new GUID/GUIDs. It is written in C++ using the Microsoft ...
0
votes
1answer
29 views
Generating UIDs in a multi-instance and multi-threaded environment
I'm trying to generate unique IDs for pieces of content and users in Windows Azure. I'm in a web role service with 3 instances (and the IIS handlers are of course multithreaded).
How can I generate ...
0
votes
3answers
54 views
Are Mongodb ObjectIds GUIDs?
The autogenerated BSON ID that is stored in the _id field of every document, is it a GUID?
The documentation says its 'most likely unique', so I am a little confused. Why would they use an id that is ...
0
votes
1answer
32 views
mysql: facebook like unique id's
I'm currently using UUID v1 as unique id
but, I think uuid is too long
I want to generate numeric unique id like fb and G+, which is shorter
and don't have to check if the id exist in DB or not ...
0
votes
1answer
66 views
(WiX) - Auto-generate GUID with pre-build event (heat.exe)
i've made a pre-build event for my directorys/files. now its creating the source.wxs fine, but there are only 'GUID="*"', so now i get compiler error because it is not mapped on ProgrammFilesFolder, ...
0
votes
0answers
12 views
Can't make GetAdapterInfo work with name returned from GetAdaptersAddresses
I can't seem to get a reasonable answer out of GetAdapterIndex no matter what I do. Obviously I've missed something, but I can't figure out what.
The adapter name given in this minimal sample is the ...
0
votes
2answers
27 views
How to generate a document ID or Report ID of 8 characters in .net
Can someone point me to the preferred method for generating a report or document ID? I have been looking at maybe using a guid that would be reduced down to a shorter length. We have an application ...
0
votes
1answer
26 views
How to generate GUIDs automatically while creating a site using ASP.NET Dynamic Data?
I am having an SQL Server database, which is having a lots of table.
Each of the table is having a primary column, which in fact is a GUID column.
I have created new ASP.NET Dynamic data site to ...
1
vote
0answers
20 views
Why can't I trust a client-generated GUID? Does treating the PK as a composite of client-GUID and a server-GUID solve anything?
I'm building off of a previous discussion I had with Jon Skeet.
The gist of my scenario is as follows:
Client application has the ability to create new 'PlaylistItem' objects which need to be ...
0
votes
1answer
42 views
Add GUID to URL in 2 cases
I have successfully been able to add a GUID to a URL using Javascript.
This is my code I am using currently:
<script>
if ((navigator.userAgent.match(/iPhone/i)) || ...
1
vote
0answers
40 views
How to generate GUID using PHP (without com_create_guid) [duplicate]
I have a task to generate unique identifiers. And I decided to use Globally unique identifiers for this purpose. They are described with RFC 4122 A Universally Unique IDentifier (UUID) URN Namespace. ...
0
votes
1answer
23 views
GUID + DataBind gives exception?
I have the following piece of code:
string ConnString = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
string SqlString = "Select * From Memberships WHERE ApplicationId ...
0
votes
1answer
116 views
Add query string or GUiD to the end of URL on page load using Javascript
I found an example on how to create a GUID with Javascript, but how would I get the current page URL and append the GUID to it using jQuery or Javascript.
function S4() {
return (((1 + ...
1
vote
0answers
75 views
Autogenerated Guid Id is empty when updated via Entity Framework
To try to isolate the source of a bug I have built the following:
SQL Server table:
CREATE TABLE [dbo].[Names]
([Key] [uniqueidentifier] NOT NULL,
[Name] [nvarchar](50) NULL,
CONSTRAINT ...
1
vote
1answer
64 views
Not able to add entities to a azure storage table in node.js when deployed to cloud?
I am using socket.io in node.js to implement chat functionality in my azure cloud project. In it i have been adding the user chat history to tables using node.js. It works fine when i run it on my ...
0
votes
2answers
43 views
How to deal with guid or uuid type primary key in Yii's urlManager instead of only digital type?
I'm trying to figure out how to pass the guid type primary key value in the HTTP GET method to the controller.
I have changed my urlManager as follows:
'urlManager'=>array(
...
1
vote
1answer
91 views
Why would servicestack ormlite save valid Guid values as NULL to SqLite database?
I am having this problem intermittently with ServiceStack.Net OrmLite on SqLite.
My model class is using a Guid for the primary Id. My code sets a Guid.NewGuid() value to my model before saving, if ...
0
votes
2answers
92 views
Coverting Guid to string
I am creating a application and I wanted to try and use GUIDs. I am using Entity Framework code first and LINQ so I thought the easiest way would be to use
string guid = Guid.NewGuid().ToString();
...
0
votes
1answer
73 views
Populating a lookup field in MS dynamics
This is sort of a follow-up question to this one. I am trying to send web-form data through Freeform, into MS Dynamics 2011. We had an extension built to send the data into MS dynamics, and it was ...
1
vote
0answers
121 views
Returning object from webservice via controller class returns an empty object
I'm building my objects with data from my database and so far so good
public static List<ImageData> GetAllImageData(Guid UserId)
{
List<ImageData> imageDataList = new ...
1
vote
1answer
104 views
SQL Server 2008 R2: Timeout exception when updating a table with a guid primary key
I have a table in SQL Server 2008 R2 which has a primary key of Guid type. After days of testing the database, now this table has 7000 rows.
I have a query which when the data is about 1000 records ...
0
votes
1answer
92 views
Passing a NULL value to a GUID
I am a total beginner at VB.NET so you may need to bear with me but I need to edit this code behind so that a null value is passed to my database for the 'imageurl' field. The front end is a web form ...
0
votes
4answers
40 views
GUID from two different JVM
I am writing a software where my code runs on two different machines. Will my GUID be still unique across the whole cluster if I have generation logic on multiple JVM.what are chances of collision in ...
2
votes
2answers
70 views
how to check for invalid guid parameter passed in
I am trying to create some test data and i want to return and error message to the user that the passed in guid is not in valid format - an example of how this could be applied will be great
proper ...
0
votes
0answers
90 views
ldap get objectguid (php ldap) with ldap_search
I've an Application whith searches our ldap and saves a few attributes in a cache.
It's no problem to get attributes like mail displayname sn etc. but I dont get the objectguid.
Maybe its just a ...
0
votes
2answers
51 views
Can I get the GUID generated by CMake for a specific vcproj at cmake time?
Preamble: I am trying to integrate my C# csproj with the rest of our C++ and C++/CLI code-base cmake build. I have received advise against trying to do this, because CMake doesn't co-operate well with ...
0
votes
1answer
151 views
How can I get table row Id in selenium
Currently, On page all control ids are dynamically generated. And in order to iterate through table, I need to get that row guid generated by java script.
e.g
<table id="tblPass" ...
0
votes
1answer
19 views
Joining three tables to create parent - child
This week ive been landed with a task of transforming a extract from a database into something usable in sharepoint (my acctual specialism)
for this i need to assign GUID (NEWID()) to unqiue elements ...
0
votes
0answers
20 views
create a sortable GUID
In my scenario an application creates many PDF files that are stored on the disc.
Then, when all files have been created they are picked up again from disk and combined into one file.
I have to ...
1
vote
2answers
141 views
WiX - Copy compiled web.config based on environment to website root
As a part of my WiX installation, I am copying all the transformed/compiled web.config files to the install directory. The names of the compiled web.config are in format web.{ENV}.config. In my ...
2
votes
1answer
73 views
From a GUID to a full path
I'm trying to get the location of an installation so that I can perform an upgrade, I am using a WiX installer but I cannot use WiX's own upgrade mechanics because it nukes the config files and does ...
2
votes
0answers
262 views
ASP.net MVC SimpleMembership
I'm using SimpleMembership, and I've connected it to my User table, and everything worked fine. But when I've tried to change UserId from int to guid, I've got error:
Cannot convert type ...
1
vote
1answer
160 views
TSQL convert newid to decimal(38,0)
I want to cast or convert newid() output to decimal (with minimum space required)
So far I did this :
SELECT CAST( '0x'+REPLACE(CAST(NEWID() AS VARCHAR(50)), '-', '' ) AS DECIMAL(38,0) )
But I'm ...
0
votes
0answers
123 views
the project type is not supported by this installation VS 2005 Win7?
I've seen alot of post about this issue but none of them have seemed to work for me. I have just about every MVC out there, the most updated service pack for vs, ran VS command prompt deven/setup and ...
1
vote
2answers
85 views
What happens when saving objects using Entity Framework?
Probably sounds like a silly question, but there is an aspect about it I would like to know:
I'm working with objects that have a Guid-property for PrimaryKeys, which gets auto-generated in the ...


