WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

Datenbankverbindung s-Function

 

padder
Forum-Newbie

Forum-Newbie


Beiträge: 1
Anmeldedatum: 29.06.14
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 30.06.2014, 06:56     Titel: Datenbankverbindung s-Function
  Antworten mit Zitat      
Hallo!

Ich arbeite derzeit an einer s-Function die auf eine MySQL-Datenbank zugreifen soll. Dazu möchte ich im setup der s-Function die Datenbankverbindung öffnen und dann im output der s-Function verwenden. Im Moment scheitere ich jedoch an der Übergabe der Datenbankverbindung zwischen setup und output.

Code:
function mysql(block)
% Level-2 MATLAB file S-Function for times two demo.
%   Copyright 1990-2009 The MathWorks, Inc.

  setup(block);
 
%endfunction

function setup(block)
 
  %% Register number of input and output ports
  block.NumInputPorts  =  1;
  block.NumOutputPorts =  0;

  %% Setup functional port properties to dynamically
  %% inherited.
  block.SetPreCompInpPortInfoToDynamic;
  block.SetPreCompOutPortInfoToDynamic;
 

    block.InputPort(1).DirectFeedthrough = true;

 
  %% Set block sample time to inherited
  block.SampleTimes = [-1 0];
 
  %% Set the block simStateCompliance to default (i.e., same as a built-in block)
  block.SimStateCompliance = 'DefaultSimState';

  %% Run accelerator on TLC
  block.SetAccelRunOnTLC(true);
 
  %% Register methods
  block.RegBlockMethod('Outputs',                 @Output);  
 
  sql_user=evalin('base','sql_user');
  sql_pass=evalin('base','sql_pass');
  sql_db  =evalin('base','sql_db');
  % Database Server
  host = 'localhost';
  % JDBC Parameters
  jdbcString = sprintf('jdbc:mysql://%s/%s', host, sql_db);
  jdbcDriver = 'com.mysql.jdbc.Driver';
  % Set this to the path to your MySQL Connector/J JAR
  % Create the database connection object
  dbConnSimu = database(sql_db, sql_user , sql_pass, jdbcDriver, jdbcString);
 
%endfunction

function Output(block)

  query = '...';
  exec(dbConnSimu, query);

 
 
%endfunction


Query sei hierbei eine beliebige MySQL-Anfrage. Wie kann ich die Datenbankverbindung (dbConnSimu) von setup nach output übergeben?

Vielen Dank und freundliche Grüße,
Patrick
Private Nachricht senden Benutzer-Profile anzeigen


Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

Du kannst Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.
Du kannst Dateien in diesem Forum posten
Du kannst Dateien in diesem Forum herunterladen
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2024 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.