Nel caso di chiavi primarie del tipo autoincrement è possibile resettarle con la seguente istruzione
DBCC CHECKIDENT ([NOME_TABELLA], RESEED, 0)
DBCC CHECKIDENT ([NOME_TABELLA], RESEED, 0)
<%-- comments --%>
<!-- comments -->
<context-param>
<param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
<param-value>true</param-value>
</context-param>
<ui:remove>
sui singoli commenti da escludere sulla pagina xhtml.
public static String toCamelCase(String s){
StringBuffer sb=new StringBuffer();
if(!isNullOrEmpty(s)){
StringTokenizer st=new StringTokenizer(s," ");
while(st.hasMoreElements()){
String testo=st.nextToken();
sb.append(testo.substring(0, 1).toUpperCase());
sb.append(testo.substring(1).toLowerCase());
sb.append(" ");
}
}
else
{
sb.append("");
}
return sb.toString();
}
function trim(s)
{
return s.replace(/^\s+|\s+$/g, '');
}
public class Exceptions {
static class Eccezione1 extends Exception { }
static class Eccezione2 extends Exception { }
public static void rethrowException(String exceptionName) throws Eccezione1,Eccezione2 {
try {
switch(exceptionName){
case "uno":
throw new Eccezione1();
case "due":
throw new Eccezione2();
default:
System.out.println("Nessuna eccezione");
}
} catch (Exception e) {
throw e;
}
}
}