mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
added like operator and handling of string sargs
Added index stuff to HACKING file Misc. mdb-sql updates
This commit is contained in:
@@ -65,6 +65,17 @@ int j,pos;
|
||||
return mdb;
|
||||
}
|
||||
|
||||
void mdb_close(MdbHandle *mdb)
|
||||
{
|
||||
if (mdb->fd > 0) {
|
||||
close(mdb->fd);
|
||||
if (mdb->filename) {
|
||||
free(mdb->filename);
|
||||
mdb->filename = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
** mdb_read a wrapper for read that bails if anything is wrong
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user