mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
Added UserAccountData and auth to the SQLite connector. Compiles, runs, but access to these tables doesn't work.
This commit is contained in:
@@ -40,12 +40,17 @@ namespace OpenSim.Data.SQLite
|
||||
/// </summary>
|
||||
public class SQLiteFramework
|
||||
{
|
||||
protected SqliteConnection m_Connection;
|
||||
protected static SqliteConnection m_Connection;
|
||||
private bool m_initialized;
|
||||
|
||||
protected SQLiteFramework(string connectionString)
|
||||
{
|
||||
m_Connection = new SqliteConnection(connectionString);
|
||||
m_Connection.Open();
|
||||
if (!m_initialized)
|
||||
{
|
||||
m_Connection = new SqliteConnection(connectionString);
|
||||
m_Connection.Open();
|
||||
m_initialized = true;
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user