16 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			403 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
using System;
 | 
						|
 | 
						|
namespace EonaCat.Sql
 | 
						|
{
 | 
						|
    public static class SqlTest
 | 
						|
    {
 | 
						|
        public static void Main(string[] args)
 | 
						|
        {
 | 
						|
            SqlHelper.IsWebSafe("SELECT * FROM alert('x');", out string errors);
 | 
						|
            var test = new EonaCat.Logger.Managers.LogManager();
 | 
						|
            test.Write("test", EonaCat.Logger.ELogType.ERROR);
 | 
						|
            Console.WriteLine(errors);
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |