Upload Custom SQL File - The SQL file upload tool in Osclass allows administrators to import and execute SQL scripts directly from the backoffice.
This feature is useful for making database modifications such as inserting new data, updating existing records, altering table structures, or optimizing database performance.
To upload a SQL file, follow these steps:
.sql
file from your local storage.When creating an SQL file, you can use two special variables that Osclass will replace automatically:
/*TABLE_PREFIX*/
- This variable will be replaced with the table prefix set in Osclass (usually oc_
by default)./*LOCALE_CODE*/
- This variable will be replaced with the default language code configured in Osclass.Using these variables ensures that your SQL commands are compatible with different installations of Osclass.
Below are some common SQL operations you may perform when uploading a SQL file:
INSERT INTO /*TABLE_PREFIX*/t_item (pk_i_id, fk_i_user_id, fk_i_category_id, s_title, s_description, dt_pub_date)
VALUES (1, 3, 5, 'Sample Listing', 'This is a sample classified listing', NOW());
UPDATE /*TABLE_PREFIX*/t_item
SET s_title = 'Updated Listing Title'
WHERE pk_i_id = 1;
DELETE FROM /*TABLE_PREFIX*/t_item
WHERE pk_i_id = 1;
TRUNCATE TABLE /*TABLE_PREFIX*/t_item;
ALTER TABLE /*TABLE_PREFIX*/t_item
ADD COLUMN s_extra_info TEXT AFTER s_description;
REPLACE INTO /*TABLE_PREFIX*/t_item (pk_i_id, fk_i_user_id, fk_i_category_id, s_title, s_description, dt_pub_date)
VALUES (1, 3, 5, 'Replaced Listing', 'This listing has been updated or inserted', NOW());
CREATE INDEX idx_item_title
ON /*TABLE_PREFIX*/t_item (s_title);
/*TABLE_PREFIX*/
to maintain compatibility across installations.The SQL file upload tool in Osclass provides administrators with a powerful way to modify and optimize their database efficiently. Using predefined variables and structured queries, users can manage their classified ads platform effectively while maintaining database integrity.