Jump to content

Globally Unique Identifiers from database


Powers
 Share

Recommended Posts

I have a query that returns a row of results and one of the fields is a globally unique identifier. I'm unable to pass that value into a function or even print it to screen to view it.

Here's the example

$query1 = "select tbl_uid, field1_name from table"

$rs1.Open($query1,$connstring)

while not $rs1.eof

$uidvalue = $rs1.Fields.item("tbl_uid").Value

funcBcall($uidvalue)

wend

Instead of being able to see that uidvalue it's blank. Any sugesstions??

Link to comment
Share on other sites

See what type you are receiving:

$uidvalue = $rs1.Fields.item("tbl_uid").Value
MsgBox(64, "Debug", "$uidvalue = " & $uidvalue & @CRLF & _
        "Type = " & VarGetType($uidvalue))

:x

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...