You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: src/ServiceStack.OrmLite.MySql/MySqlDialectProviderBase.cs
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -137,15 +137,10 @@ public override string ToTableNamesStatement(string schema)
137
137
?"SELECT table_name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema = DATABASE()"
138
138
:"SELECT table_name FROM information_schema.tables WHERE table_type='BASE TABLE' AND table_schema = DATABASE() AND table_name LIKE {0}".SqlFmt(this,GetTableName("",schema)+"%");
139
139
}
140
-
141
-
/// <summary>
142
-
/// Fetch table row counts from information_schema (results are not live)
/// Return table, row count SQL for listing all tables with their row counts
230
+
/// </summary>
231
+
/// <param name="live">If true returns live current rowc ounts of each table (slower), otherwise returns cached row counts from RDBMS table stats</param>
232
+
/// <param name="schema">The table schema if any</param>
0 commit comments