فایل ACCDB چیست؟
یک فایل با پسوند accdb. یک فایل پایگاه داده Microsoft Access 2007 است که داده های کاربران را در جداول ذخیره می کند. از ذخیره سازی پشتیبانی می کند فرم های سفارشی، پرس و جوهای SQL و سایر داده ها. پس از اینکه مایکروسافت به ساختار فایل مبتنی بر XML تغییر مکان داد، فایلهای ACCDB جایگزین فایلهای MDB شدند. فایل های ACCDB هنوز هم می توانند با سازگاری قدیمی به MDB تبدیل شوند. با این حال، ACCDB فرمت فایل پایگاه داده دسترسی به طور گسترده در حال حاضر استفاده می شود. مایکروسافت همچنین از ویژگیهای اضافی در قالب ACCDB مانند امکان ذخیره فایلهای پیوست، دادههای باینری و پشتیبانی از فیلد چند ارزشی پشتیبانی میکند.
فرمت فایل ACCDB
مانند MDB، هیچ مشخصات عمومی برای فرمت فایل ACCDB در دسترس نیست. مایکروسافت از دسترسی برنامهریزی شده به این فایلها از طریق استاندارد Open Database Connectivity (ODBC) و Visual Basic for Applications (VBA) پشتیبانی میکند.
یک بینش
A hex dump of a simple ACCDB file suggests that there are general similarities in structure to the latest versions of the predecessor MDB Format Family. Both file formats use fixed page sizes of 4096 bytes. Another similarity between ACCDB and MDB is the form of the magic number, which includes the string “Standard ACE DB” for ACCDB. A version or compatibility code is in the same location in both formats. The mdbtools | HACKING file states “Offset 0x14 contains the Jet version of this database” and The unofficial MDB Guide concurs. The information in these sources, combined with Wikipedia entry for Microsoft Jet Database Engine, suggests that a value of 0x02 indicates ACE 12 (Access 2007) and 0x03 indicates ACE 14 (Access 2010). However, a minimal database created in Access 2010 and a similar one created in Access 2016 both have 0x02 in this location. A minimal database created in Access 2016, but defining a column with the newly introduced “large integer” data type, had a value of 0x05. در فایلهای ACCDB، به نظر میرسد این نشانگر سازگاری فایل را نشان میدهد تا نسخه موتور ACE که برای ایجاد آن استفاده شده است.
منابع
[از کدام فرمت فایل اکسس استفاده کنم؟](https://support.microsoft.com/en-us/office/which-access-file-format-should-i-use-012d9ab3-d14c-479e-b617- be66f9070b41)