A lot of changes. If you care, check it out.
This commit is contained in:
parent
9e2be5bb51
commit
72cf566049
|
@ -1,4 +1,5 @@
|
||||||
using Newtonsoft.Json;
|
using System.Collections;
|
||||||
|
using Newtonsoft.Json;
|
||||||
using Pastel;
|
using Pastel;
|
||||||
using RSND.Core.DbInternals;
|
using RSND.Core.DbInternals;
|
||||||
using RSND.Core.Querying.Queries;
|
using RSND.Core.Querying.Queries;
|
||||||
|
@ -81,13 +82,11 @@ public class Database
|
||||||
var table = query?.TableName;
|
var table = query?.TableName;
|
||||||
var key = query?.Key;
|
var key = query?.Key;
|
||||||
var value = query?.Value;
|
var value = query?.Value;
|
||||||
var newValue = query?.NewValue;
|
|
||||||
|
|
||||||
var tableToReturn = _tables.Find(x => x.Name == table);
|
var tableToReturn = _tables.Find(x => x.Name == table);
|
||||||
var row = tableToReturn?.Rows?.FirstOrDefault(x => x.Columns?.FirstOrDefault(y => y.Name == key)?.Value == value);
|
var row = tableToReturn?.Rows?.FirstOrDefault(x => x.Columns?.FirstOrDefault(y => y.Name == key)?.Name == key);
|
||||||
var column = row?.Columns?.FirstOrDefault(x => x.Name == key);
|
var column = row?.Columns?.FirstOrDefault(x => x.Name == key);
|
||||||
column.Value = newValue;
|
column.Value = value;
|
||||||
|
|
||||||
Save();
|
Save();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,16 +94,12 @@ public class Database
|
||||||
{
|
{
|
||||||
var table = query?.TableName;
|
var table = query?.TableName;
|
||||||
var columns = query?.Columns;
|
var columns = query?.Columns;
|
||||||
|
|
||||||
var tableToReturn = _tables.Find(x => x.Name == table);
|
var tableToReturn = _tables.Find(x => x.Name == table);
|
||||||
|
|
||||||
if (tableToReturn == null) return;
|
|
||||||
|
|
||||||
var row = new Row
|
tableToReturn?.Rows?.Add(new Row
|
||||||
{
|
{
|
||||||
Columns = columns
|
Columns = columns
|
||||||
};
|
});
|
||||||
tableToReturn.Rows?.Append(row);
|
|
||||||
Save();
|
Save();
|
||||||
}
|
}
|
||||||
public static void Loop()
|
public static void Loop()
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
using Fleck;
|
using Fleck;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Pastel;
|
|
||||||
using RSND.Core.DbInternals;
|
using RSND.Core.DbInternals;
|
||||||
using RSND.Core.Querying;
|
using RSND.Core.Querying;
|
||||||
using RSND.Core.Querying.Queries;
|
using RSND.Core.Querying.Queries;
|
||||||
|
|
|
@ -2,5 +2,5 @@
|
||||||
|
|
||||||
public class Row
|
public class Row
|
||||||
{
|
{
|
||||||
public Column[]? Columns;
|
public List<Column>? Columns;
|
||||||
}
|
}
|
|
@ -3,5 +3,5 @@
|
||||||
public class Table
|
public class Table
|
||||||
{
|
{
|
||||||
public string? Name;
|
public string? Name;
|
||||||
public Row[]? Rows;
|
public List<Row>? Rows;
|
||||||
}
|
}
|
|
@ -9,6 +9,6 @@ public class BaseQuery
|
||||||
{
|
{
|
||||||
Type = type;
|
Type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Type { get; set; }
|
public string Type { get; set; }
|
||||||
}
|
}
|
|
@ -5,5 +5,5 @@ namespace RSND.Core.Querying.Queries;
|
||||||
public class AddQuery : Query
|
public class AddQuery : Query
|
||||||
{
|
{
|
||||||
public string TableName { get; set; }
|
public string TableName { get; set; }
|
||||||
public Column[] Columns { get; set; }
|
public List<Column> Columns { get; set; }
|
||||||
}
|
}
|
|
@ -4,12 +4,12 @@ namespace RSND.Core.Querying.Queries;
|
||||||
|
|
||||||
public class CreateTableQuery : Query
|
public class CreateTableQuery : Query
|
||||||
{
|
{
|
||||||
public CreateTableQuery(string tableName, Row[] rows)
|
public CreateTableQuery(string tableName, List<Row> rows)
|
||||||
{
|
{
|
||||||
TableName = tableName;
|
TableName = tableName;
|
||||||
Rows = rows;
|
Rows = rows;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string TableName { get; set; }
|
public string TableName { get; set; }
|
||||||
public Row[] Rows;
|
public List<Row>? Rows;
|
||||||
}
|
}
|
|
@ -5,5 +5,4 @@ public class SetQuery : Query
|
||||||
public string TableName { get; set; }
|
public string TableName { get; set; }
|
||||||
public string Key { get; set; }
|
public string Key { get; set; }
|
||||||
public string Value { get; set; }
|
public string Value { get; set; }
|
||||||
public string NewValue { get; set; }
|
|
||||||
}
|
}
|
|
@ -16,13 +16,13 @@ public static class RsndMain
|
||||||
Db.CreateTable(new Table
|
Db.CreateTable(new Table
|
||||||
{
|
{
|
||||||
Name = "fooTable",
|
Name = "fooTable",
|
||||||
Rows = new []
|
Rows = new List<Row>
|
||||||
{
|
{
|
||||||
new Row
|
new()
|
||||||
{
|
{
|
||||||
Columns = new []
|
Columns = new List<Column>
|
||||||
{
|
{
|
||||||
new Column("test", "1")
|
new("test", "1")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue