Avoid $c(0) in globals
Good Morning,
I have this question for a long time. When I make an insert by SQL from an external application in the fields of type %String, if they are empty, it writes the character $c(0) in the global.
Is there a way so that if an Insert is received in a field of type% String with null value instead of the $ c (0) it leaves it empty?:
I have the class defined like this:
Class User.MiClase Extends (% Persistent,% XML.Adaptor)
and the property like this:
Property myProperty As% String;
I have tried creating a trigger or setting default values but it doesn't work.
{
S:({myProperty }=$c(0)) {myProperty }=""
}
Thank you!
Are you sure that, your insert queries send null and not an empty string? Null and empty strings are different, what are you trying to achieve it's a null, and $c(0) is an empty string.
Documentation
$c(0) is the internal representation of the SQL empty string ''. Your insert must be using '' as the value for myProperty instead of null if you are seeing $c(0) for the field values. SQL null and empty-string string are very different. null means unknown, while empty string is a 0 length string value.
If you always want to convert '' to null for myProperty values, write a myPropertyNormalize property member method that converts the value to null. This will override the %String Normalize() method and convert $c(0) to "" whenever the property/field's value is normalized by the filers.
Trying to do this in a trigger will not work as triggers are not meant to be used to modify property/field values being filed.
Good morning,
Sorry, I was wrong when writing the question, effectively what I am receiving is a empty string and what I want to store is an null.
David,
I have been trying to overwrite the Normalize method but it is not working for me, maybe I am not overwriting the method well
{
s str=""
//s code="%val" //i %parameter("TRUNCATE"),%parameter("MAXLEN")'="" s code="$e(%val,1,"_(+%parameter("MAXLEN"))_")"
//$$$GENERATE(" Q "_code)
$$$GENERATE(" Q "_$tr(code,$c(0),""""))
QUIT $$$OK
}
Thanks!.
Daniel,
I guess it looks like we don't support CodeMode = generator for overriding property methods. CodeMode = code should work, but you need to access type parameters from the property definition in order to generate the proper code. I believe you will need to extend the %String datatype and override Normalize, then use the new datatype class in your property definition. Here is an example:
Class User.StringoNoEmpty Extends %String [ Language = objectscript ] {
ClassMethod Normalize(%val As %RawString) As %String [ CodeMode = generator, ServerOnly = 1 ]
{
{
set code="%val"
if %parameter("TRUNCATE"),%parameter("MAXLEN")'="" { set code="$e(%val,1,"_(+%parameter("MAXLEN"))_")" }
$$$GENERATE(" RETURN $tr("_code_",$c(0),"""")")
RETURN $$$OK
}
}
Property myString As User.StringoNoEmpty(MAXLEN = 54, TRUNCATE = 1);
Hope this helps,
-dave
Thanks Dave works perfectly
Hi
if you have a simple Insert SQL statement in the form:
INSERT into {Table} VALUES ('abc','zyx',123,'',NULL)
then Cache SQL will replace '' with $c(0) in the global record and "" for NULL.
NULL is a valid keyword in SQL not only for testing conditions such as "WHERE {column} IS NOT NULL" but also when being used in the context of values in my INSERT example and also in Class Methods or Class Queries that are projected as SQL Stored Procedures.
So if you have a Class Method projected as a Stored Procedure then if you call the stored procedure as follows:
call MyTable_MyProcedure('abc','xyz',123,'',NULL)
then the values for the parameters will be
p1 = "abc"
p2 = "xyz"
p3 = 123
p4 = $c(0)
p5 = ""
Yours
Nigel
There is another way.
If you want any empty strings to always be treated as null/"" instead of "/$c(0), then there is an documented setting (within the scope of namespace), namely:
^%SYS("sql","sys","namespace",<YOUR_NAMESPACE>,"empty string")
Here is a small example:
Social networks
InterSystems resources
Log in or sign up
Log in or create a new account to continue
Log in or sign up
Log in or create a new account to continue
Log in or sign up
Log in or create a new account to continue