Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
firebird /
sample /
interfaces /
Delete
Unzip
Name
Size
Permission
Date
Action
01.create.cpp
4.53
KB
-rw-r--r--
2026-04-17 16:36
01.create.pas
4.38
KB
-rw-r--r--
2026-04-17 16:36
02.update.cpp
5.59
KB
-rw-r--r--
2026-04-17 16:36
03.select.cpp
5.34
KB
-rw-r--r--
2026-04-17 16:36
04.print_table.cpp
6.04
KB
-rw-r--r--
2026-04-17 16:36
05.user_metadata.cpp
6.52
KB
-rw-r--r--
2026-04-17 16:36
06.fb_message.cpp
4.27
KB
-rw-r--r--
2026-04-17 16:36
07.blob.cpp
4.96
KB
-rw-r--r--
2026-04-17 16:36
08.events.cpp
4.35
KB
-rw-r--r--
2026-04-17 16:36
09.service.cpp
4.98
KB
-rw-r--r--
2026-04-17 16:36
10.backup.cpp
4.66
KB
-rw-r--r--
2026-04-17 16:36
11.batch.cpp
15.69
KB
-rw-r--r--
2026-04-17 16:36
12.batch_isc.cpp
8.28
KB
-rw-r--r--
2026-04-17 16:36
13.null_pk.cpp
3.9
KB
-rw-r--r--
2026-04-17 16:36
14.restore.cpp
4.32
KB
-rw-r--r--
2026-04-17 16:36
ifaceExamples.h
1.25
KB
-rw-r--r--
2026-04-17 16:36
Save
Rename
/* * PROGRAM: Object oriented API samples. * MODULE: ifaceExamples.h * DESCRIPTION: A number of common defines for all samples. * * The contents of this file are subject to the Initial * Developer's Public License Version 1.0 (the "License"); * you may not use this file except in compliance with the * License. You may obtain a copy of the License at * http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl. * * Software distributed under the License is distributed AS IS, * WITHOUT WARRANTY OF ANY KIND, either express or implied. * See the License for the specific language governing rights * and limitations under the License. * * The Original Code was created by Alexander Peshkoff * for the Firebird Open Source RDBMS project. * * Copyright (c) 2014 Alexander Peshkoff <peshkoff@mail.ru> * and all contributors signed below. * * All Rights Reserved. * Contributor(s): ______________________________________. */ #include <stdlib.h> #include <stdio.h> #include <string.h> #if defined(__cplusplus) && (__cplusplus >= 201103L) #include <atomic> typedef std::atomic_int FbSampleAtomic; #else typedef int FbSampleAtomic; #endif #include <firebird/Interface.h> using namespace Firebird; #define SAMPLES_DIALECT SQL_DIALECT_V6