This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "editor.semanticTokenColorCustomizations": { | |
| "rules": { | |
| "property": { | |
| "foreground": "#FFFFFF" | |
| }, | |
| "field": { | |
| "foreground": "#FFFFFF" | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //basic MySQL reading method | |
| public async override void ExecuteQuery(string query) | |
| { | |
| using (MySqlConnection conn = new MySqlConnection(ConnectionString)) | |
| { | |
| MySqlCommand cmd = new MySqlCommand(query, conn); | |
| try | |
| { | |
| conn.Open(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DataTable ExecuteReadQuery(string query) | |
| { | |
| DataTable entries = new DataTable(); | |
| using (SqliteConnection db = new SqliteConnection(ConnectionString)) | |
| { | |
| SqliteCommand selectCommand = new SqliteCommand(query, db); | |
| try | |
| { | |
| db.Open(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Timers; | |
| using System.Windows; | |
| using System.Xml; | |
| using System.Xml.Linq; | |
| namespace MiniBolg | |
| { |