-- SQL Manager 2008 for SQL Server 3.4.0.7
-- ---------------------------------------
-- Host : YOUR PC NAME\SQLEXPRESS
-- Datenbank : ACCOUNT_DBF
-- Version : Microsoft SQL Server 10.0.1600.22
USE [ACCOUNT_DBF]
GO
INSERT INTO [dbo].[ACCOUNT_TBL] ([account], [password], [isuse], [member], [id_no1], [id_no2], [realname], [reload], [vers], [attempts], [bantime], [lastip])
VALUES
(N'test', N'172c2125beb8251396f14e01cf1766e6', N'T', N'A', NULL, N'172c2125beb8251396f14e01cf1766e6', N'F', NULL, 0, NULL, NULL, NULL)
GO
INSERT INTO [dbo].[ACCOUNT_TBL_DETAIL] ([account], [gamecode], [tester], [m_chLoginAuthority], [regdate], [BlockTime], [EndTime], [WebTime], [isuse], [secession], [net_enable], [vers], [AccSource], [AccSourceID], [email], [birthday], [ban_reason], [ip])
VALUES
(N'test', N'A000', N'2', N'P', '20080818 00:51:35.700', N'20010101', N'20990101', N'20050101', N'O', NULL, NULL, 0, N'0', 0, N'a2lsbGEtZGF2QHdlYi5kZQ==', N'MDguMDkuMTk5Mw==', N'', N'test')
GO
i execute a query using the account of test and pass is test, but when i try to log in its says wrong password. how d i fixed this.
best regards.
