用于清除SQL PLUS提示的命令

时间:2016-11-10 04:34:34

标签: oracle command-prompt sqlplus

清除 SQL PLUS 提示符的命令是什么? ' Clear' ' Cls' 不会为我工作!

1 个答案:

答案 0 :(得分:1)

您需要使用手册中记录的 Intent myIntent = new Intent(context, DoSomething.class); PendingIntent pendingIntent = PendingIntent.getActivity( context, 0, myIntent, Intent.FLAG_ACTIVITY_NEW_TASK); myNotification = new NotificationCompat.Builder(context) .setContentTitle("Exercise of Notification!") .setContentText("Do Something...") .setTicker("Notification!") .setWhen(System.currentTimeMillis()) .setContentIntent(pendingIntent) .setDefaults(Notification.DEFAULT_SOUND) .setAutoCancel(true) .setSmallIcon(R.drawable.ic_launcher) .build(); notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE); notificationManager.notify(MY_NOTIFICATION_ID, myNotification);

http://docs.oracle.com/database/121/SQPUG/ch_twelve012.htm#SQPUG033