本文整理了Java中org.pentaho.di.core.Const.escapeSQL()
方法的一些代码示例,展示了Const.escapeSQL()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.escapeSQL()
方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:escapeSQL
[英]Escape SQL content. i.e. replace characters with &values;
[中]
代码示例来源:origin: pentaho/pentaho-kettle
public static String escapeSQL( ValueMetaInterface metaA, Object dataA ) {
if ( dataA == null ) {
return null;
}
return Const.escapeSQL( dataA.toString() );
}
代码示例来源:origin: pentaho/pentaho-kettle
public static String escapeSQL( Context actualContext, Scriptable actualObject, Object[] ArgList,
Function FunctionContext ) {
if ( ArgList.length == 1 ) {
return Const.escapeSQL( Context.toString( ArgList[0] ) );
} else {
throw Context.reportRuntimeError( "The function call escapeSQL requires 1 argument." );
}
}
代码示例来源:origin: pentaho/pentaho-kettle
break;
case StringOperationsMeta.MASK_ESCAPE_SQL:
rcode = Const.escapeSQL( rcode );
break;
default:
内容来源于网络,如有侵权,请联系作者删除!