1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package OpenSim::AssetServer::Config; use strict; our %SYS_SQL = ( select_asset_by_uuid => "SELECT * FROM assets WHERE id=X?", insert_asset => "INSERT INTO assets VALUES (?,?,?,?,?,?,?,?)" ); our @ASSETS_COLUMNS = ( "id", "name", "description", "assetType", "invType", "local", "temporary", "data", ); 1;