1 /*
2  * Copyright 2015-2018 HuntLabs.cn
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 module hunt.sql.dialect.mysql.executor.MySqlProcedureExecutor;
17 
18 import hunt.collection;
19 
20 import hunt.sql.ast.SQLStatement;
21 
22 
23 public class MySqlProcedureExecutor {
24 
25     public static int executeStatements(List!(SQLStatement) list) {
26         return 0;
27     }
28 
29     public static int executeStatement(SQLStatement stmt) {
30         return 0;
31     }
32 
33     public static int executeIf(SQLStatement stmt) {
34         return 0;
35     }
36 
37     public static int executeWhile(SQLStatement stmt) {
38         return 0;
39     }
40 
41     public static int executeLoop(SQLStatement stmt) {
42         return 0;
43     }
44 
45     public static int executeCase(SQLStatement stmt) {
46         return 0;
47     }
48 
49     public static int executeAssign(SQLStatement stmt) {
50         return 0;
51     }
52 
53     public static int executeOpen(SQLStatement stmt) {
54         return 0;
55     }
56 
57     public static int executeFetch(SQLStatement stmt) {
58         return 0;
59     }
60 
61     public static int executeClose(SQLStatement stmt) {
62         return 0;
63     }
64 
65     public static int executeSQL(SQLStatement stmt) {
66         return 0;
67     }
68 
69     public static int executeFunction(SQLStatement stmt) {
70         return 0;
71     }
72 
73 }