Пример #1
0
    public static string GetCharacterSet()
    {
        string result;

        if (MySQL1.SQL == IntPtr.Zero)
        {
            result = null;
        }
        else
        {
            result = Marshal.PtrToStringAnsi(MySQL1.mysql_character_set_name(MySQL1.SQL));
        }
        return(result);
    }