Compare commits
4 Commits
master
...
0.6.1-post
Author | SHA1 | Date |
---|---|---|
Justin Clarke Casey | 6686040e76 | |
lbsa71 | ce6fecbc93 | |
Teravus Ovares | e63c768973 | |
Charles Krinke | 7b60e2c93f |
|
@ -171,6 +171,10 @@ namespace OpenSim.Data.MSSQL
|
||||||
{
|
{
|
||||||
return SqlDbType.Float;
|
return SqlDbType.Float;
|
||||||
}
|
}
|
||||||
|
if (type == typeof(Single))
|
||||||
|
{
|
||||||
|
return SqlDbType.Float;
|
||||||
|
}
|
||||||
if (type == typeof(int))
|
if (type == typeof(int))
|
||||||
{
|
{
|
||||||
return SqlDbType.Int;
|
return SqlDbType.Int;
|
||||||
|
@ -185,7 +189,7 @@ namespace OpenSim.Data.MSSQL
|
||||||
}
|
}
|
||||||
if (type == typeof(sbyte))
|
if (type == typeof(sbyte))
|
||||||
{
|
{
|
||||||
return SqlDbType.TinyInt;
|
return SqlDbType.Int;
|
||||||
}
|
}
|
||||||
if (type == typeof(Byte[]))
|
if (type == typeof(Byte[]))
|
||||||
{
|
{
|
||||||
|
@ -215,6 +219,10 @@ namespace OpenSim.Data.MSSQL
|
||||||
{
|
{
|
||||||
return value.ToString();
|
return value.ToString();
|
||||||
}
|
}
|
||||||
|
if (valueType == typeof(OpenMetaverse.UUID))
|
||||||
|
{
|
||||||
|
return value.ToString();
|
||||||
|
}
|
||||||
if (valueType == typeof(bool))
|
if (valueType == typeof(bool))
|
||||||
{
|
{
|
||||||
return (bool)value ? 1 : 0;
|
return (bool)value ? 1 : 0;
|
||||||
|
@ -223,6 +231,10 @@ namespace OpenSim.Data.MSSQL
|
||||||
{
|
{
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
if (valueType == typeof(int))
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -269,6 +281,11 @@ namespace OpenSim.Data.MSSQL
|
||||||
|
|
||||||
private static readonly Dictionary<string, string> emptyDictionary = new Dictionary<string, string>();
|
private static readonly Dictionary<string, string> emptyDictionary = new Dictionary<string, string>();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Run a query and return a sql db command
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sql">The SQL query.</param>
|
||||||
|
/// <returns></returns>
|
||||||
internal AutoClosingSqlCommand Query(string sql)
|
internal AutoClosingSqlCommand Query(string sql)
|
||||||
{
|
{
|
||||||
return Query(sql, emptyDictionary);
|
return Query(sql, emptyDictionary);
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -482,8 +482,8 @@ namespace OpenSim.Data.MSSQL
|
||||||
while (reader.Read())
|
while (reader.Read())
|
||||||
{
|
{
|
||||||
FriendRegionInfo fri = new FriendRegionInfo();
|
FriendRegionInfo fri = new FriendRegionInfo();
|
||||||
fri.isOnline = (sbyte)reader["agentOnline"] != 0;
|
fri.isOnline = (byte)reader["agentOnline"] != 0;
|
||||||
fri.regionHandle = (ulong)reader["currentHandle"];
|
fri.regionHandle = Convert.ToUInt64(reader["currentHandle"].ToString());
|
||||||
|
|
||||||
infos[uuid] = fri;
|
infos[uuid] = fri;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
BEGIN TRANSACTION
|
||||||
|
|
||||||
|
ALTER TABLE prims ADD LinkNumber integer not null default 0
|
||||||
|
|
||||||
|
COMMIT
|
|
@ -379,7 +379,11 @@ namespace OpenSim.Framework.Communications
|
||||||
return logResponse.CreateLoginFailedResponseLLSD();
|
return logResponse.CreateLoginFailedResponseLLSD();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
return logResponse.CreateLoginFailedResponseLLSD();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
return logResponse.CreateLoginFailedResponseLLSD();
|
||||||
|
|
||||||
|
|
||||||
if (userProfile.GodLevel < m_minLoginLevel)
|
if (userProfile.GodLevel < m_minLoginLevel)
|
||||||
|
|
Loading…
Reference in New Issue