Method | Description | |
---|---|---|
Delete ( string id ) : bool | ||
Dispose ( ) : void | ||
ExistsAsset ( UUID uuid ) : bool |
Check if asset exist in m_database
|
|
FetchAssetMetadataSet ( int start, int count ) : List |
Returns a list of AssetMetadata objects. The list is a subset of the entire data set offset by start containing count elements.
|
|
GetAsset ( UUID assetID ) : OpenSim.Framework.AssetBase |
Fetch Asset from m_database
|
|
Initialise ( ) : void |
Initialises asset interface
|
|
Initialise ( string connectionString ) : void |
Initialises asset interface
|
|
StoreAsset ( OpenSim.Framework.AssetBase asset ) : void |
Create asset in m_database
|
Method | Description | |
---|---|---|
InsertAsset ( OpenSim.Framework.AssetBase asset ) : void | ||
UpdateAsset ( OpenSim.Framework.AssetBase asset ) : void |
Update asset in m_database
|
public FetchAssetMetadataSet ( int start, int count ) : List |
||
start | int | The number of results to discard from the total data set. |
count | int | The number of rows the returned list should contain. |
return | List |
public GetAsset ( UUID assetID ) : OpenSim.Framework.AssetBase | ||
assetID | UUID | the asset UUID |
return | OpenSim.Framework.AssetBase |
public Initialise ( string connectionString ) : void | ||
connectionString | string | connect string |
return | void |
public StoreAsset ( OpenSim.Framework.AssetBase asset ) : void | ||
asset | OpenSim.Framework.AssetBase | the asset |
return | void |