Ejemplo n.º 1
0
        public static DataTable GetColumnStatus(this SQLiteConnection @this, string tableName)
        {
            tableName = SQLiteString.QuoteIdentifier(tableName);
            var sql = $"PRAGMA table_info({tableName});";

            return(@this.Select(sql));
        }
Ejemplo n.º 2
0
        public static void CopyAllData(this SQLiteConnection @this, string tableFrom, string tableTo)
        {
            tableFrom = SQLiteString.QuoteIdentifier(tableFrom);
            tableTo   = SQLiteString.QuoteIdentifier(tableTo);
            DataTable dt1 = @this.Select(string.Format("select * from {0} where 1 = 2;", tableFrom));
            DataTable dt2 = @this.Select(string.Format("select * from {0} where 1 = 2;", tableTo));

            var dic = new Dictionary <string, bool>();

            foreach (DataColumn dataColumn in dt1.Columns)
            {
                if (dt2.Columns.Contains(dataColumn.ColumnName))
                {
                    if (!dic.ContainsKey(dataColumn.ColumnName))
                    {
                        dic[dataColumn.ColumnName] = true;
                    }
                }
            }

            foreach (DataColumn dataColumn in dt2.Columns)
            {
                if (dt1.Columns.Contains(dataColumn.ColumnName))
                {
                    if (!dic.ContainsKey(dataColumn.ColumnName))
                    {
                        dic[dataColumn.ColumnName] = true;
                    }
                }
            }

            var sb = new StringBuilder();

            foreach (var kvp in dic)
            {
                if (sb.Length > 0)
                {
                    sb.Append(",");
                }

                sb.Append("`");
                sb.Append(kvp.Key);
                sb.Append("`");
            }

            var sb2 = new StringBuilder();

            sb2.Append("insert into `");
            sb2.Append(tableTo);
            sb2.Append("`(");
            sb2.Append(sb.ToString());
            sb2.Append(") select ");
            sb2.Append(sb.ToString());
            sb2.Append(" from `");
            sb2.Append(tableFrom);
            sb2.Append("`;");

            @this.ExecuteNonQuery(sb2.ToString());
        }
Ejemplo n.º 3
0
        public static void RenameTable(this SQLiteConnection @this, string tableFrom, string tableTo)
        {
            tableFrom = SQLiteString.QuoteIdentifier(tableFrom);
            tableTo   = SQLiteString.QuoteIdentifier(tableTo);
            var sql = $"alter table {tableFrom} rename to {tableTo};";

            @this.ExecuteNonQuery(sql);
        }
Ejemplo n.º 4
0
        public static bool TableExists(this SQLiteConnection @this, string tableName)
        {
            if (string.IsNullOrEmpty(tableName))
            {
                return(false);
            }

            tableName = SQLiteString.QuoteIdentifier(tableName);
            var    sql    = $"SELECT COUNT(*) FROM sqlite_master WHERE type = 'table' AND name = {tableName}";
            object result = @this.ExecuteScalar(sql);

            if (result is long rows)
            {
                return(rows == 1);
            }
            return(false);
        }
Ejemplo n.º 5
0
 public static StringBuilder AppendQuotedLiteral(this StringBuilder @this, string value)
 {
     value = SQLiteString.QuoteLiteral(value);
     @this.Append(value);
     return(@this);
 }
Ejemplo n.º 6
0
 public static StringBuilder AppendQuotedIdentifier(this StringBuilder @this, string value)
 {
     value = SQLiteString.QuoteIdentifier(value);
     @this.Append(value);
     return(@this);
 }
Ejemplo n.º 7
0
 public static void DropTable(this SQLiteConnection @this, string tableName)
 {
     tableName = SQLiteString.QuoteIdentifier(tableName);
     @this.ExecuteNonQuery($"drop table if exists {tableName};");
 }