PostgreSQL
 sql >> डेटाबेस >  >> RDS >> PostgreSQL

मैं matlabs डेटाबेस टूलबॉक्स के बिना matlab से पोस्टग्रेस्क्ल डेटाबेस तक कैसे पहुंच सकता हूं?

डेटाबेस टूलबॉक्स के बिना matlab से पोस्टग्रेज़ से कनेक्ट करने के लिए कुछ ऐसा ही करें:

% Add jar file to classpath (ensure it is present in your current dir)
javaclasspath('postgresql-9.0-801.jdbc4.jar');

% Username and password you chose when installing postgres
props=java.util.Properties;
props.setProperty('user', '<your_postgres_username>');
props.setProperty('password', '<your_postgres_password>');

% Create the database connection (port 5432 is the default postgres chooses
% on installation)
driver=org.postgresql.Driver;
url = 'jdbc:postgresql://<yourhost>:<yourport>\<yourdb>';
conn=driver.connect(url, props);

% A test query
sql='select * from <table>'; % Gets all records
ps=conn.prepareStatement(sql);
rs=ps.executeQuery();

% Read the results into an array of result structs
count=0;
result=struct;
while rs.next()
    count=count+1;
    result(count).var1=char(rs.getString(2));
    result(count).var2=char(rs.getString(3));
    ...
end


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. WAL संग्रह:विफल (कृपया सुनिश्चित करें कि WAL शिपिंग सेटअप है)

  2. एक अदिश से तत्व नहीं निकाल सकते

  3. अपाचे केयेन/पोस्टग्रेएसक्यूएल:बहुत से क्लाइंट पहले से ही त्रुटि कर रहे हैं

  4. पोस्टग्रेस्क्ल में रोवनम

  5. समय सीमा के लिए 'एक-से-अनेक' संबंध अखंडता मुद्दा