Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.INC - File Extension for Include Files
What is INC? INC, short name for Include, is used as the file extension for programming source files to be included in other source files. .INC files are text files that can be opened by Notepad or any text editors. See the sample .INC file included below.
✍: FYIcenter.com
File Extension: .INC
MIME Type: text/plain
File Content: Include source code
.INC files are Include files, which contain programming source codes to be included other source code files. .INC files are usually in PHP, C/C++, and MySQL programming languages. Here is a sample .INC Include file, innodb-index.inc, for a MySQL test source code:
insert into t1 values (1,1,'ab','ab'),(2,2,'ac','ac'),(3,2,'ad','ad'), (4,4,'afe','afe'); commit; --error ER_DUP_ENTRY alter table t1 add unique index (b); insert into t1 values(8,9,'fff','fff'); select * from t1; show create table t1; alter table t1 add index (b); insert into t1 values(10,10,'kkk','iii'); select * from t1; select * from t1 force index(b) order by b; explain select * from t1 force index(b) order by b; show create table t1; alter table t1 add unique index (c), add index (d); insert into t1 values(11,11,'aaa','mmm'); select * from t1; select * from t1 force index(b) order by b; select * from t1 force index(c) order by c; select * from t1 force index(d) order by d; explain select * from t1 force index(b) order by b; explain select * from t1 force index(c) order by c; explain select * from t1 force index(d) order by d; show create table t1; check table t1; drop table t1;
.INC Include file sample: Click sample.inc to download.
Since .INC text files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
2020-09-09, 16062👍, 1💬
Popular Posts:
What is BMP? BMP, short name for Bitmap, is used as the file extension for bitmap image files. .BMP ...
What is XPS or OXPS? XPS stands for for XML Paper Specification. OXPS stands for for Open XML Paper ...
What is TIF or TIFF? TIFF, short name for Tagged Image File Format, is used as the file extension fo...
What is PRN? PRN, short name for Printable, is used as the file extension for files padded with spac...
What is CS? CS, short name for C Sharp, is used as the file extension for C# (C Sharp) files. .CS fi...