/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package org.apache.skywalking.apm.collector.storage.base.sql; import java.text.MessageFormat; import java.util.*; /** * @author peng-yongsheng, clevertension */ public class SqlBuilder { public static String buildSql(String sql, Object... args) { return MessageFormat.format(sql, args); } public static String buildSql(String sql, List args) { MessageFormat messageFormat = new MessageFormat(sql); return messageFormat.format(args.toArray(new Object[0])); } public static String buildBatchInsertSql(String tableName, Set columnNames) { StringBuilder sb = new StringBuilder("insert into "); sb.append(tableName).append("("); columnNames.forEach(columnName -> sb.append(columnName).append(",")); sb.delete(sb.length() - 1, sb.length()); sb.append(") values("); for (int i = 0; i < columnNames.size(); i++) { sb.append("?,"); } sb.delete(sb.length() - 1, sb.length()); sb.append(")"); return sb.toString(); } public static String buildBatchUpdateSql(String tableName, Set columnNames, String whereClauseName) { StringBuilder sb = new StringBuilder("update "); sb.append(tableName).append(" set "); columnNames.forEach(columnName -> sb.append(columnName).append("=?,")); sb.delete(sb.length() - 1, sb.length()); sb.append(" where ").append(whereClauseName).append("=?"); return sb.toString(); } }