Rank: 1474 based on 79 downloads (last 30 days) and 2 files submitted
photo

Martin Furlan

E-mail

Personal Profile:

Professional Interests:
vibrations noise, signal processing, FEM, BEM

 

Watch this Author's files

 

Files Posted by Martin View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
29 Jan 2007 diskfree Queries the free space of a volume Author: Martin Furlan directories, disk volume, free space, disk, disk usage, path 26 5
  • 3.0
3.0 | 2 ratings
10 Jan 2007 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan database, sql, oracle, insert, data export, data import 53 8
  • 4.6
4.6 | 10 ratings
Comments and Ratings on Martin's Files View all
Updated File Comment by Comments Rating
28 Jul 2009 diskfree Queries the free space of a volume Author: Martin Furlan Nygårds, Thomas

The FSUTIL utility requires a local NTFS volume,
so no network drives can be used with this function.

24 Feb 2009 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan Nicolas, Guyennon

Thanks a lot !!! Amazing work, even faster than Tim Myers code (oledb*.m)
I'm working with your toolbox to query access 2003 database.
I was looking for table, field and query information. Tooks me 4 days ... hope that could help someone else

%% get table name
sqltablename='SELECT name FROM MSysObjects WHERE Type=1 AND Flags=0 ORDER BY name';
tablename=adodbquery(cn,sqltablename);
%% get query name
sqlqueryname='SELECT name FROM MSysObjects WHERE Type=5 AND Flags=0 ORDER BY name';
queryname=adodbquery(cn,sqlqueryname);

note that in both case you should first change users authorization to read for MSysObjects opening your access database. ("user and group authorization" menu in tools)

the hardest part was to get fields or columns name ...

function field_name=tablefieldname(cn,table_name)
%% find all field name from table
sqlfiledname=['SELECT * FROM ' table_name];
invoke(cn,'BeginTrans');
r = invoke(cn,'Execute',sqlfiledname);
invoke(cn,'CommitTrans');
nbfileds=r.Fields.count;field_name='';
for ff=1:nbfileds
    fld=r.Fields.Item(ff-1);
    field_name=strvcat(field_name,fld.name);
end

bye
Nico

14 Oct 2008 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan K., Leen

want to use variables in the sql queries...
kindly suggest a way.
e.g. sql=['select * from TestTable where firstname=',myname ,'];
5this statement wont replace variable myname

23 Sep 2008 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan K., Jasleen

Thanks a tonne..!!!!
solved my problem.!!

28 Aug 2008 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan deepa, deepa

Top Tags Applied by Martin
2d surfaces, access, data export, data import, database
Files Tagged by Martin View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
29 Jan 2007 diskfree Queries the free space of a volume Author: Martin Furlan directories, disk volume, free space, disk, disk usage, path 26 5
  • 3.0
3.0 | 2 ratings
10 Jan 2007 ADO OLE Database Connection Queries datasource and insers data into datasource. Author: Martin Furlan database, sql, oracle, insert, data export, data import 53 8
  • 4.6
4.6 | 10 ratings
22 Aug 2006 Published M-Files Surface Fitting using gridfit Model 2-d surfaces from scattered data Author: John D'Errico 2d surfaces, surface, surface fitting, modeling, regression, interpolation 473 46
  • 4.87755
4.9 | 49 ratings
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com