Powers Posted December 29, 2010 Posted December 29, 2010 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??
PsaltyDS Posted December 29, 2010 Posted December 29, 2010 See what type you are receiving: $uidvalue = $rs1.Fields.item("tbl_uid").Value MsgBox(64, "Debug", "$uidvalue = " & $uidvalue & @CRLF & _ "Type = " & VarGetType($uidvalue)) 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now