Significant changes have been implemented in the database operations, particularly in update and insert functions, ensuring more stable and efficient handling of queries. Form capabilities have been enhanced by adding new attributes for processing decimal steps, further improving data input methods. This update also includes considerable refactoring and security enhancements in the PDO class.
16 lines
229 B
PHP
Executable File
16 lines
229 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: skasdorf
|
|
* Date: 10.07.17
|
|
* Time: 13:48
|
|
*/
|
|
|
|
namespace Nibiru;
|
|
|
|
|
|
interface IOdbc extends IMysql
|
|
{
|
|
const PLACE_READONLY = "readonly";
|
|
const FILTER_COLUMN_NAME = "COLUMN_NAME";
|
|
} |