auth_ticket error

Alezo

Member
Dec 18, 2016
90
10
Hello, guys. I got error when starting the emulator:

PHP:
UPDATE `users` SET `online` = '0', `auth_ticket` = NULL
MySql.Data.MySqlClient.MySqlException (0x80004005): Column 'auth_ticket' cannot be null
   em MySql.Data.MySqlClient.MySqlStream.ReadPacket()
   em MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
   em MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
   em MySql.Data.MySqlClient.MySqlDataReader.NextResult()
   em MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
   em MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery()
   em Plus.Database.Adapter.QueryAdapter.RunQuery() na C:\Users\Sledmore\Desktop\PlusEMU\Database\Adapter\QueryAdapter.cs:linha 167
 

Joe

Well-Known Member
Jun 10, 2012
4,158
1,943
Pretty straight forward.
Code:
MySql.Data.MySqlClient.MySqlException (0x80004005): Column 'auth_ticket' cannot be null
Make sure the column auth_ticket cannot be null.
 

Alezo

Member
Dec 18, 2016
90
10
I was able to resolve the error, previously couldn't, because of the "key length". So Icleared and managed to save the column, and the error disappeared. Although the error appeared when I turned off the emulator, the server functioned normally.
 

Users who are viewing this thread

Top