No announcements
Found 2634731 threads
-
0 Votes
Set a Default Value of Functions Optional Argument to Null
How can you set a function optional argument to null?Answered | 13 Replies | 19630 Views | Created by Ryan0827 - Thursday, August 4, 2011 9:10 PM | Last reply by Reed Kimble - Friday, August 5, 2011 3:19 PM -
3 Votes
Require non-null arguments by default?
How do you specify that the argument may be null with code?Answered | 8 Replies | 3633 Views | Created by dschuessler - Thursday, December 27, 2012 10:13 PM | Last reply by Dave Sexton - Thursday, January 3, 2013 8:01 PM -
0 Votes
IF none value in Dropdownlist then set null value by default
In that case modify your SP to include "ALL" or "NA" option (by using union) and then in avaliable value tab select your DS pointing to SP and in default ...Answered | 6 Replies | 3525 Views | Created by Ramakant Singh - Wednesday, February 8, 2012 4:50 PM | Last reply by Suhas Kudekar - Thursday, February 9, 2012 1:57 PM -
1 Votes
Can pointer-to-function argument using default value?
The default value comes after the function type: void fun(void (*argu)(void) = NULL);Answered | 1 Replies | 2167 Views | Created by anaconda_wly - Thursday, May 10, 2012 11:25 AM | Last reply by Mike Danes - Thursday, May 10, 2012 11:31 AM -
1 Votes
Rowset as a table valued function argument.
, CREATE FUNCTION fn(@path string = "default", @rowset TABLE(id int, name string)) ...Answered | 1 Replies | 660 Views | Created by kstepien_kamsoft - Tuesday, April 19, 2016 7:56 PM | Last reply by MRys - Tuesday, April 19, 2016 8:46 PM -
0 Votes
Setting default value on null
> Is there a way that on record save if user has not provided value for a datetime field[sic: columns are not fields] then set the value of the field [sic] as GetDate() ...Answered | 2 Replies | 4048 Views | Created by Y a h y a - Sunday, July 10, 2011 9:26 PM | Last reply by --CELKO-- - Sunday, July 10, 2011 11:06 PM -
3 Votes
Default argument and Virtual Function..........
Setting the default value is an action the compiler performs at compile time.Answered | 5 Replies | 5652 Views | Created by imanish11111 - Wednesday, December 20, 2006 8:51 AM | Last reply by Martin-W - Wednesday, December 20, 2006 12:46 PM -
4 Votes
Add field with VBA and set default value to Null
BTW, I agree there is no need to set Null.Answered | 11 Replies | 4541 Views | Created by JohnPapa05 - Wednesday, October 28, 2015 2:30 PM | Last reply by JohnPapa05 - Thursday, October 29, 2015 3:52 PM -
5 Votes
Default Value or null field
In our database we define default values for all types except for datetime which are nullable.Answered | 7 Replies | 1516 Views | Created by Ivan Sammut - Thursday, January 10, 2019 7:41 PM | Last reply by Naomi N - Sunday, January 13, 2019 10:32 PM -
0 Votes
Parsing Dynamic Activity Argument Default Values
I think the default value is determined from InArgument<T>.Value.Answered | 2 Replies | 5320 Views | Created by Tim Wright Dev - Friday, April 8, 2011 4:47 PM | Last reply by Tim Wright Dev - Friday, April 8, 2011 8:16 PM -
0 Votes
Default value if there is null value provided
Hi Yuji, The expressions in Logic Apps should only have the first @ at the beggining, so your expression should ...Answered | 3 Replies | 5224 Views | Created by YNagata - Thursday, March 16, 2017 4:20 AM | Last reply by WSilveiraNZ [MVP] - Monday, April 10, 2017 10:47 AM -
2 Votes
.net create a function with an optional parameter being a "list of" - struggling with the default value
That's why null (nothing in VB) works.Answered | 6 Replies | 8959 Views | Created by Arnaud_mysqlproject - Tuesday, August 2, 2011 12:40 PM | Last reply by Anthony Trudeau - Tuesday, August 2, 2011 7:24 PM -
2 Votes
Setting Null value for Enumeration and optional field
If State is Optional and has an Enum, then if the value is not in the Enum, State must not appear at all.Answered | 2 Replies | 964 Views | Created by Nitin Surya - Wednesday, March 2, 2016 4:38 AM | Last reply by SMSVikasK - Wednesday, March 2, 2016 1:55 PM -
0 Votes
Null fallback to default value.
No; NULL is not a value, but the absence of a value, so cannot be used in any comparative operation as the result will always be NULL, ...Answered | 10 Replies | 1214 Views | Created by UpTide - Wednesday, June 19, 2013 8:01 PM | Last reply by Ken Sheridan - Thursday, June 20, 2013 4:55 PM -
2 Votes
Optional Function Parameter Values of a Class ?
The optional value won't except a type of any kind - it has to be a value.Answered | 13 Replies | 2905 Views | Created by mtrezza - Thursday, January 1, 2009 10:13 PM | Last reply by Corey Furman - Sunday, January 4, 2009 5:47 AM -
0 Votes
Inserting default value instead of null
Adding a default constraint to any column just indicates that if NO value is specified for that column while INSERT, the default value will be used instead for that ...Answered | 4 Replies | 10605 Views | Created by RAGS1109 - Monday, April 16, 2012 10:06 PM | Last reply by vinaypugalia - Tuesday, April 17, 2012 6:10 AM -
0 Votes
DateTime parameter with NULL value is default
I believe the OP wanted a NULL default value for the date parameter.Answered | 5 Replies | 3779 Views | Created by AnyMi - Saturday, July 4, 2015 9:42 AM | Last reply by TimBolton - Friday, October 4, 2019 10:34 AM -
0 Votes
SSRS parameters default or null value
Hi Adil, You need to go to the default values in properties and select value from query and choose dataset.Answered | 6 Replies | 4662 Views | Created by Adil Shahzad - Tuesday, May 12, 2015 3:48 PM | Last reply by BharathRS - Wednesday, May 13, 2015 9:24 AM -
0 Votes
TSQL default option values?
So guess hard coding the values even if it has the same as the default does have it's benefits.Answered | 4 Replies | 3112 Views | Created by techresearch7777777 - Friday, August 19, 2011 5:01 PM | Last reply by techresearch7777777 - Friday, August 19, 2011 9:49 PM -
1 Votes
Default value null for parameter of type Nullable<int>
Here's what I found out: null seems to be the default value of the parameter even if it is not specified.Answered | 3 Replies | 8012 Views | Created by Laurin - Wednesday, August 31, 2011 4:16 PM | Last reply by Laurin - Thursday, September 1, 2011 3:58 PM - Items 1 to 20 of 2634731 Next ›
No announcements