sql parameter

  • Thread starter Thread starter Phil Hunt
  • Start date Start date
P

Phil Hunt

I am using sql parameter, no problem. But where/ how do I see what is in the
paramter in debug or watch. I cannot fin it.

Thanks
 
I am using sql parameter, no problem. But where/ how do I see what is in
the paramter in debug or watch. I cannot fin it.

In the immediate window type:

? MySqlParameter.Value

(Of course, substituting the name of your actual variable.)

In a Watch window just examine the Value property.
 
got it.

Jeff Johnson said:
In the immediate window type:

? MySqlParameter.Value

(Of course, substituting the name of your actual variable.)

In a Watch window just examine the Value property.
 
Back
Top