├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Database │ ├── CachedTable.php │ ├── Database.php │ ├── Identity.php │ ├── Key.php │ ├── MemoryKey.php │ ├── Relation.php │ ├── Schema.php │ ├── Sequence.php │ ├── SequenceBase.php │ ├── SequencesFile.php │ ├── Table.php │ ├── TableCursor.php │ ├── TempTable.php │ ├── Transaction.php │ └── WriteCursor.php ├── Environment.php ├── File.php ├── Functions.php ├── LockableFile.php ├── MicrotimeLockFile.php ├── OrderByClause.php ├── Parser.php ├── Queries │ ├── AlterSequence.php │ ├── AlterTable.php │ ├── AlterTableActions │ │ ├── Action.php │ │ ├── AddColumn.php │ │ ├── AddPrimaryKey.php │ │ ├── AlterIdentity.php │ │ ├── BaseAction.php │ │ ├── DropColumn.php │ │ ├── DropDefault.php │ │ ├── DropIdentity.php │ │ ├── DropPrimaryKey.php │ │ ├── SetDataType.php │ │ └── SetDefault.php │ ├── Begin.php │ ├── Commit.php │ ├── CreateBase.php │ ├── CreateRelationBase.php │ ├── CreateSchema.php │ ├── CreateSequence.php │ ├── CreateTable.php │ ├── CreateTableBase.php │ ├── CreateTableLike.php │ ├── DataModifyQuery.php │ ├── Delete.php │ ├── DropBase.php │ ├── DropDatabase.php │ ├── DropRelationBase.php │ ├── DropSchema.php │ ├── DropSequence.php │ ├── DropTable.php │ ├── Insert.php │ ├── Lock.php │ ├── Merge.php │ ├── Query.php │ ├── RenameTable.php │ ├── Rollback.php │ ├── Select.php │ ├── SetDatabase.php │ ├── ShowColumns.php │ ├── ShowDatabases.php │ ├── ShowTables.php │ ├── Truncate.php │ ├── Unlock.php │ └── Update.php ├── ResultSet.php ├── Statement.php ├── TempFile.php ├── Types.php └── Utilities.php └── tests ├── BaseTest.php ├── CachedTableTest.php ├── DatabaseTest.php ├── EnvironmentTest.php ├── FileTest.php ├── FunctionsTest.php ├── IdentityTest.php ├── LockableFileTest.php ├── MemoryKeyTest.php ├── RegressionTest.php ├── ResultSetTest.php ├── SQL ├── AlterSequenceTest.php ├── AlterTableTest.php ├── CreateSchemaTest.php ├── CreateSequenceTest.php ├── CreateTableTest.php ├── DeleteTest.php ├── DropDatabaseTest.php ├── DropSchemaTest.php ├── DropSequenceTest.php ├── DropTableTest.php ├── InsertTest.php ├── LocksTest.php ├── MergeTest.php ├── RenameTableTest.php ├── SelectTest.php ├── ShowTest.php ├── TransactionsTest.php ├── TruncateTest.php ├── UpdateTest.php └── UseTest.php ├── SchemaTest.php ├── SequenceBaseTest.php ├── SequenceFileTest.php ├── SequenceTest.php ├── StatementTest.php ├── TableCursorTest.php ├── WriteCursorTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | *.phar 3 | .tmp 4 | /nbproject/private/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Database/CachedTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/CachedTable.php -------------------------------------------------------------------------------- /src/Database/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Database.php -------------------------------------------------------------------------------- /src/Database/Identity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Identity.php -------------------------------------------------------------------------------- /src/Database/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Key.php -------------------------------------------------------------------------------- /src/Database/MemoryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/MemoryKey.php -------------------------------------------------------------------------------- /src/Database/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Relation.php -------------------------------------------------------------------------------- /src/Database/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Schema.php -------------------------------------------------------------------------------- /src/Database/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Sequence.php -------------------------------------------------------------------------------- /src/Database/SequenceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/SequenceBase.php -------------------------------------------------------------------------------- /src/Database/SequencesFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/SequencesFile.php -------------------------------------------------------------------------------- /src/Database/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Table.php -------------------------------------------------------------------------------- /src/Database/TableCursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/TableCursor.php -------------------------------------------------------------------------------- /src/Database/TempTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/TempTable.php -------------------------------------------------------------------------------- /src/Database/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/Transaction.php -------------------------------------------------------------------------------- /src/Database/WriteCursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Database/WriteCursor.php -------------------------------------------------------------------------------- /src/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Environment.php -------------------------------------------------------------------------------- /src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/File.php -------------------------------------------------------------------------------- /src/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Functions.php -------------------------------------------------------------------------------- /src/LockableFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/LockableFile.php -------------------------------------------------------------------------------- /src/MicrotimeLockFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/MicrotimeLockFile.php -------------------------------------------------------------------------------- /src/OrderByClause.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/OrderByClause.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/Queries/AlterSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterSequence.php -------------------------------------------------------------------------------- /src/Queries/AlterTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTable.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/Action.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/AddColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/AddColumn.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/AddPrimaryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/AddPrimaryKey.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/AlterIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/AlterIdentity.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/BaseAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/BaseAction.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/DropColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/DropColumn.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/DropDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/DropDefault.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/DropIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/DropIdentity.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/DropPrimaryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/DropPrimaryKey.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/SetDataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/SetDataType.php -------------------------------------------------------------------------------- /src/Queries/AlterTableActions/SetDefault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/AlterTableActions/SetDefault.php -------------------------------------------------------------------------------- /src/Queries/Begin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Begin.php -------------------------------------------------------------------------------- /src/Queries/Commit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Commit.php -------------------------------------------------------------------------------- /src/Queries/CreateBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateBase.php -------------------------------------------------------------------------------- /src/Queries/CreateRelationBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateRelationBase.php -------------------------------------------------------------------------------- /src/Queries/CreateSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateSchema.php -------------------------------------------------------------------------------- /src/Queries/CreateSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateSequence.php -------------------------------------------------------------------------------- /src/Queries/CreateTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateTable.php -------------------------------------------------------------------------------- /src/Queries/CreateTableBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateTableBase.php -------------------------------------------------------------------------------- /src/Queries/CreateTableLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/CreateTableLike.php -------------------------------------------------------------------------------- /src/Queries/DataModifyQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DataModifyQuery.php -------------------------------------------------------------------------------- /src/Queries/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Delete.php -------------------------------------------------------------------------------- /src/Queries/DropBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropBase.php -------------------------------------------------------------------------------- /src/Queries/DropDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropDatabase.php -------------------------------------------------------------------------------- /src/Queries/DropRelationBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropRelationBase.php -------------------------------------------------------------------------------- /src/Queries/DropSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropSchema.php -------------------------------------------------------------------------------- /src/Queries/DropSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropSequence.php -------------------------------------------------------------------------------- /src/Queries/DropTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/DropTable.php -------------------------------------------------------------------------------- /src/Queries/Insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Insert.php -------------------------------------------------------------------------------- /src/Queries/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Lock.php -------------------------------------------------------------------------------- /src/Queries/Merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Merge.php -------------------------------------------------------------------------------- /src/Queries/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Query.php -------------------------------------------------------------------------------- /src/Queries/RenameTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/RenameTable.php -------------------------------------------------------------------------------- /src/Queries/Rollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Rollback.php -------------------------------------------------------------------------------- /src/Queries/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Select.php -------------------------------------------------------------------------------- /src/Queries/SetDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/SetDatabase.php -------------------------------------------------------------------------------- /src/Queries/ShowColumns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/ShowColumns.php -------------------------------------------------------------------------------- /src/Queries/ShowDatabases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/ShowDatabases.php -------------------------------------------------------------------------------- /src/Queries/ShowTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/ShowTables.php -------------------------------------------------------------------------------- /src/Queries/Truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Truncate.php -------------------------------------------------------------------------------- /src/Queries/Unlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Unlock.php -------------------------------------------------------------------------------- /src/Queries/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Queries/Update.php -------------------------------------------------------------------------------- /src/ResultSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/ResultSet.php -------------------------------------------------------------------------------- /src/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Statement.php -------------------------------------------------------------------------------- /src/TempFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/TempFile.php -------------------------------------------------------------------------------- /src/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Types.php -------------------------------------------------------------------------------- /src/Utilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/src/Utilities.php -------------------------------------------------------------------------------- /tests/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/BaseTest.php -------------------------------------------------------------------------------- /tests/CachedTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/CachedTableTest.php -------------------------------------------------------------------------------- /tests/DatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/DatabaseTest.php -------------------------------------------------------------------------------- /tests/EnvironmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/EnvironmentTest.php -------------------------------------------------------------------------------- /tests/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/FileTest.php -------------------------------------------------------------------------------- /tests/FunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/FunctionsTest.php -------------------------------------------------------------------------------- /tests/IdentityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/IdentityTest.php -------------------------------------------------------------------------------- /tests/LockableFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/LockableFileTest.php -------------------------------------------------------------------------------- /tests/MemoryKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/MemoryKeyTest.php -------------------------------------------------------------------------------- /tests/RegressionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/RegressionTest.php -------------------------------------------------------------------------------- /tests/ResultSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/ResultSetTest.php -------------------------------------------------------------------------------- /tests/SQL/AlterSequenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/AlterSequenceTest.php -------------------------------------------------------------------------------- /tests/SQL/AlterTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/AlterTableTest.php -------------------------------------------------------------------------------- /tests/SQL/CreateSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/CreateSchemaTest.php -------------------------------------------------------------------------------- /tests/SQL/CreateSequenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/CreateSequenceTest.php -------------------------------------------------------------------------------- /tests/SQL/CreateTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/CreateTableTest.php -------------------------------------------------------------------------------- /tests/SQL/DeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/DeleteTest.php -------------------------------------------------------------------------------- /tests/SQL/DropDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/DropDatabaseTest.php -------------------------------------------------------------------------------- /tests/SQL/DropSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/DropSchemaTest.php -------------------------------------------------------------------------------- /tests/SQL/DropSequenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/DropSequenceTest.php -------------------------------------------------------------------------------- /tests/SQL/DropTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/DropTableTest.php -------------------------------------------------------------------------------- /tests/SQL/InsertTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/InsertTest.php -------------------------------------------------------------------------------- /tests/SQL/LocksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/LocksTest.php -------------------------------------------------------------------------------- /tests/SQL/MergeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/MergeTest.php -------------------------------------------------------------------------------- /tests/SQL/RenameTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/RenameTableTest.php -------------------------------------------------------------------------------- /tests/SQL/SelectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/SelectTest.php -------------------------------------------------------------------------------- /tests/SQL/ShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/ShowTest.php -------------------------------------------------------------------------------- /tests/SQL/TransactionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/TransactionsTest.php -------------------------------------------------------------------------------- /tests/SQL/TruncateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/TruncateTest.php -------------------------------------------------------------------------------- /tests/SQL/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/UpdateTest.php -------------------------------------------------------------------------------- /tests/SQL/UseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SQL/UseTest.php -------------------------------------------------------------------------------- /tests/SchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SchemaTest.php -------------------------------------------------------------------------------- /tests/SequenceBaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SequenceBaseTest.php -------------------------------------------------------------------------------- /tests/SequenceFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SequenceFileTest.php -------------------------------------------------------------------------------- /tests/SequenceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/SequenceTest.php -------------------------------------------------------------------------------- /tests/StatementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/StatementTest.php -------------------------------------------------------------------------------- /tests/TableCursorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/TableCursorTest.php -------------------------------------------------------------------------------- /tests/WriteCursorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbuberl/fSQL/HEAD/tests/WriteCursorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |