SlideShare a Scribd company logo
Εισηγητής: Μπαλατσούκας Νίκος
Sub test_()
'Declaring the necessary variables.
Dim con As Object
Dim rs As Object
Dim sql As String
Dim myValues() As String
Dim i As Integer
Dim j As Integer
'Disable screen flickering.
Application.ScreenUpdating = False
On Error Resume Next
'Create the ADODB connection object.
Set con = CreateObject("ADODB.connection")
'Check if the object was created.
If Err.Number <> 0Then
MsgBox "Connection was not created!", vbCritical, "Connection error"
Exit Sub
End If
On Error GoTo 0
'Open the connection.
'Όλα σε μια γραμμή:
con.Open
"Provider=Microsoft.ACE.OLEDB.12.0;
Data Source=
C:UsersnikosDesktopdbnikos.accdb;"
'Create the SQL statement to read the file.
Filter all the data from Canada.
'Note that the filename is used instead of the
table name.
sql = "SELECT * FROM nikos"
On Error Resume Next
'Create the ADODB recordset object.
Set rs = CreateObject("ADODB.recordset")
'Check if the object was created.
If Err.Number <> 0Then
MsgBox "Connection was not created!", vbCritical, "Connection error"
Exit Sub
End If
On Error GoTo 0
'Set thee cursor location.
rs.CursorLocation = 3 'adUseClient on early binding
rs.CursorType = 1 'adOpenKeyset on early binding
'Open the recordset.
rs.Open sql, con
'Redim the table that will contain the filtered data.
ReDim myValues(rs.RecordCount, 4)
'Loop through the recordset and pass the
selected values to the array.
i = 1
If Not (rs.EOFAnd rs.BOF)Then
'Go to the first record.
rs.MoveFirst
Do Until rs.EOF =True
myValues(i, 1) = rs!onoma
myValues(i, 2) = rs!onoma
myValues(i, 3) = rs!onoma
myValues(i, 4) = rs!onoma
'Move to the next record.
rs.MoveNext
i = i + 1
Loop
Else
Else
'Close the recordet and the connection.
rs.Close
con.Close
'Release the objects.
Set rs = Nothing
Set con = Nothing
'Enable the screen.
Application.ScreenUpdating =True
'In case of an empty recordset display an error.
MsgBox "There are no records in the recordset!", vbCritical, "No Records"
Exit Sub
End If
'Write the array in the sheet.
'Sheet1.Activate
For i = 1To UBound(myValues)
For j = 1To 4
Cells(i + 1, j) = myValues(i, j)
Next j
Next i
'Close the recordet and the connection.
rs.Close
con.Close
'Release the objects.
Set rs = Nothing
Set con = Nothing
'Adust the columns width.
Columns("A:D").EntireColumn.AutoFit
'Enable the screen.
Application.ScreenUpdating =True
'Inform the user that the macro was executed
successfully.
MsgBox "The values were read from recordset
successfully!", vbInformation, "Done"
End Sub

More Related Content

What's hot

JS Objects manipulation
JS Objects manipulationJS Objects manipulation
JS Objects manipulation
City University of Macau
 
"Query Execution: Expectation - Reality (Level 300)" Денис Резник
"Query Execution: Expectation - Reality (Level 300)" Денис Резник"Query Execution: Expectation - Reality (Level 300)" Денис Резник
"Query Execution: Expectation - Reality (Level 300)" Денис Резник
Fwdays
 
Vb database connections
Vb database connectionsVb database connections
Vb database connections
Tharsikan
 
Codes
CodesCodes
Codes
OSit3
 
Building a blockchain part 3
Building a blockchain part 3Building a blockchain part 3
Building a blockchain part 3
juliomacr
 
Exp 6.3 d-422 (2)
Exp 6.3 d-422  (2)Exp 6.3 d-422  (2)
Exp 6.3 d-422 (2)
Omkar Rane
 

What's hot (8)

JS Objects manipulation
JS Objects manipulationJS Objects manipulation
JS Objects manipulation
 
Java Week2(C) Notepad
Java Week2(C)   NotepadJava Week2(C)   Notepad
Java Week2(C) Notepad
 
"Query Execution: Expectation - Reality (Level 300)" Денис Резник
"Query Execution: Expectation - Reality (Level 300)" Денис Резник"Query Execution: Expectation - Reality (Level 300)" Денис Резник
"Query Execution: Expectation - Reality (Level 300)" Денис Резник
 
Vb database connections
Vb database connectionsVb database connections
Vb database connections
 
Codes
CodesCodes
Codes
 
Building a blockchain part 3
Building a blockchain part 3Building a blockchain part 3
Building a blockchain part 3
 
Examplecode
ExamplecodeExamplecode
Examplecode
 
Exp 6.3 d-422 (2)
Exp 6.3 d-422  (2)Exp 6.3 d-422  (2)
Exp 6.3 d-422 (2)
 

Similar to Χρήση Vba για την πρόσβαση σε βάση δεδομένων

Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]testduser1
 
Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]User1test
 
Db connection to qtp
Db connection to qtpDb connection to qtp
Db connection to qtp
siva1991
 
Uses & Abuses of Mocks & Stubs
Uses & Abuses of Mocks & StubsUses & Abuses of Mocks & Stubs
Uses & Abuses of Mocks & StubsPatchSpace Ltd
 
JavaScript Best Pratices
JavaScript Best PraticesJavaScript Best Pratices
JavaScript Best Pratices
ChengHui Weng
 
The Ring programming language version 1.5.2 book - Part 6 of 181
The Ring programming language version 1.5.2 book - Part 6 of 181The Ring programming language version 1.5.2 book - Part 6 of 181
The Ring programming language version 1.5.2 book - Part 6 of 181
Mahmoud Samir Fayed
 
Streams of information - Chicago crystal language monthly meetup
Streams of information - Chicago crystal language monthly meetupStreams of information - Chicago crystal language monthly meetup
Streams of information - Chicago crystal language monthly meetup
Brian Cardiff
 
Qtp Imp Script Examples
Qtp Imp Script ExamplesQtp Imp Script Examples
Qtp Imp Script ExamplesUser1test
 
Javascript
JavascriptJavascript
Javascript
Gita Kriz
 
JavaScript Foundations Day1
JavaScript Foundations Day1JavaScript Foundations Day1
JavaScript Foundations Day1
Troy Miles
 
Persistence And Documents
Persistence And DocumentsPersistence And Documents
Persistence And Documents
SV.CO
 
Excel Scripting
Excel Scripting Excel Scripting
Excel Scripting
G C Reddy Technologies
 
JavaScript 1 for high school
JavaScript 1 for high schoolJavaScript 1 for high school
JavaScript 1 for high school
jekkilekki
 
Useful macros and functions for excel
Useful macros and functions for excelUseful macros and functions for excel
Useful macros and functions for excel
Nihar Ranjan Paital
 
Indexing thousands of writes per second with redis
Indexing thousands of writes per second with redisIndexing thousands of writes per second with redis
Indexing thousands of writes per second with redis
pauldix
 
Ajax and JavaScript Bootcamp
Ajax and JavaScript BootcampAjax and JavaScript Bootcamp
Ajax and JavaScript Bootcamp
AndreCharland
 
JavaScript Neednt Hurt - JavaBin talk
JavaScript Neednt Hurt - JavaBin talkJavaScript Neednt Hurt - JavaBin talk
JavaScript Neednt Hurt - JavaBin talk
Thomas Kjeldahl Nilsson
 
Pattern Matching in Scala
Pattern Matching in ScalaPattern Matching in Scala
Pattern Matching in Scala
Derek Chen-Becker
 

Similar to Χρήση Vba για την πρόσβαση σε βάση δεδομένων (20)

Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]
 
Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]Adodb Scripts And Some Sample Scripts[1]
Adodb Scripts And Some Sample Scripts[1]
 
Db connection to qtp
Db connection to qtpDb connection to qtp
Db connection to qtp
 
Uses & Abuses of Mocks & Stubs
Uses & Abuses of Mocks & StubsUses & Abuses of Mocks & Stubs
Uses & Abuses of Mocks & Stubs
 
JavaScript Best Pratices
JavaScript Best PraticesJavaScript Best Pratices
JavaScript Best Pratices
 
The Ring programming language version 1.5.2 book - Part 6 of 181
The Ring programming language version 1.5.2 book - Part 6 of 181The Ring programming language version 1.5.2 book - Part 6 of 181
The Ring programming language version 1.5.2 book - Part 6 of 181
 
Streams of information - Chicago crystal language monthly meetup
Streams of information - Chicago crystal language monthly meetupStreams of information - Chicago crystal language monthly meetup
Streams of information - Chicago crystal language monthly meetup
 
Qtp Imp Script Examples
Qtp Imp Script ExamplesQtp Imp Script Examples
Qtp Imp Script Examples
 
Javascript
JavascriptJavascript
Javascript
 
JavaScript Foundations Day1
JavaScript Foundations Day1JavaScript Foundations Day1
JavaScript Foundations Day1
 
Persistence And Documents
Persistence And DocumentsPersistence And Documents
Persistence And Documents
 
Excel Scripting
Excel Scripting Excel Scripting
Excel Scripting
 
JavaScript 1 for high school
JavaScript 1 for high schoolJavaScript 1 for high school
JavaScript 1 for high school
 
Useful macros and functions for excel
Useful macros and functions for excelUseful macros and functions for excel
Useful macros and functions for excel
 
Indexing thousands of writes per second with redis
Indexing thousands of writes per second with redisIndexing thousands of writes per second with redis
Indexing thousands of writes per second with redis
 
Rar
RarRar
Rar
 
QTP
QTPQTP
QTP
 
Ajax and JavaScript Bootcamp
Ajax and JavaScript BootcampAjax and JavaScript Bootcamp
Ajax and JavaScript Bootcamp
 
JavaScript Neednt Hurt - JavaBin talk
JavaScript Neednt Hurt - JavaBin talkJavaScript Neednt Hurt - JavaBin talk
JavaScript Neednt Hurt - JavaBin talk
 
Pattern Matching in Scala
Pattern Matching in ScalaPattern Matching in Scala
Pattern Matching in Scala
 

More from Nikos Mpalatsoukas

Μαζική αποστολή email
Μαζική αποστολή emailΜαζική αποστολή email
Μαζική αποστολή email
Nikos Mpalatsoukas
 
Vba παρουσίαση
Vba παρουσίασηVba παρουσίαση
Vba παρουσίαση
Nikos Mpalatsoukas
 
Δημιουργία βιογραφικού europass cv
Δημιουργία βιογραφικού europass cvΔημιουργία βιογραφικού europass cv
Δημιουργία βιογραφικού europass cv
Nikos Mpalatsoukas
 
Διαφοροποιημένη διδασκαλία στην πληροφορική
Διαφοροποιημένη διδασκαλία στην πληροφορικήΔιαφοροποιημένη διδασκαλία στην πληροφορική
Διαφοροποιημένη διδασκαλία στην πληροφορική
Nikos Mpalatsoukas
 
Κανονικοποίηση βάσης δεδομένων
Κανονικοποίηση βάσης δεδομένωνΚανονικοποίηση βάσης δεδομένων
Κανονικοποίηση βάσης δεδομένων
Nikos Mpalatsoukas
 
Παραδείγματα SQL
Παραδείγματα SQLΠαραδείγματα SQL
Παραδείγματα SQL
Nikos Mpalatsoukas
 
Εισαγωγή στην SQL
Εισαγωγή στην SQLΕισαγωγή στην SQL
Εισαγωγή στην SQL
Nikos Mpalatsoukas
 
Wordpress administrator home-page
Wordpress administrator home-pageWordpress administrator home-page
Wordpress administrator home-page
Nikos Mpalatsoukas
 
Photoshop levels πολύ φωτεινή εικόνα
Photoshop levels πολύ φωτεινή εικόναPhotoshop levels πολύ φωτεινή εικόνα
Photoshop levels πολύ φωτεινή εικόνα
Nikos Mpalatsoukas
 
Photoshop curves και levels σε πολύ σκοτεινή εικόνα
Photoshop curves και levels σε πολύ σκοτεινή εικόναPhotoshop curves και levels σε πολύ σκοτεινή εικόνα
Photoshop curves και levels σε πολύ σκοτεινή εικόνα
Nikos Mpalatsoukas
 
Εγκατάσταση tux-paint
Εγκατάσταση tux-paintΕγκατάσταση tux-paint
Εγκατάσταση tux-paint
Nikos Mpalatsoukas
 
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webexΟδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
Nikos Mpalatsoukas
 
Ασφάλεια στο webex
Ασφάλεια στο webexΑσφάλεια στο webex
Ασφάλεια στο webex
Nikos Mpalatsoukas
 
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphoneΣύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
Nikos Mpalatsoukas
 
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστήΣύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
Nikos Mpalatsoukas
 
Πως να κάνετε activate το Webex
Πως να κάνετε activate το WebexΠως να κάνετε activate το Webex
Πως να κάνετε activate το Webex
Nikos Mpalatsoukas
 
GDPR GAP Analysis
GDPR GAP AnalysisGDPR GAP Analysis
GDPR GAP Analysis
Nikos Mpalatsoukas
 
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένωνΕκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
Nikos Mpalatsoukas
 
Χαρτογράφηση ροής δεδομένων Data Flow Mapping
Χαρτογράφηση ροής δεδομένων Data Flow MappingΧαρτογράφηση ροής δεδομένων Data Flow Mapping
Χαρτογράφηση ροής δεδομένων Data Flow Mapping
Nikos Mpalatsoukas
 
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας ΔεδομένωνΗ λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
Nikos Mpalatsoukas
 

More from Nikos Mpalatsoukas (20)

Μαζική αποστολή email
Μαζική αποστολή emailΜαζική αποστολή email
Μαζική αποστολή email
 
Vba παρουσίαση
Vba παρουσίασηVba παρουσίαση
Vba παρουσίαση
 
Δημιουργία βιογραφικού europass cv
Δημιουργία βιογραφικού europass cvΔημιουργία βιογραφικού europass cv
Δημιουργία βιογραφικού europass cv
 
Διαφοροποιημένη διδασκαλία στην πληροφορική
Διαφοροποιημένη διδασκαλία στην πληροφορικήΔιαφοροποιημένη διδασκαλία στην πληροφορική
Διαφοροποιημένη διδασκαλία στην πληροφορική
 
Κανονικοποίηση βάσης δεδομένων
Κανονικοποίηση βάσης δεδομένωνΚανονικοποίηση βάσης δεδομένων
Κανονικοποίηση βάσης δεδομένων
 
Παραδείγματα SQL
Παραδείγματα SQLΠαραδείγματα SQL
Παραδείγματα SQL
 
Εισαγωγή στην SQL
Εισαγωγή στην SQLΕισαγωγή στην SQL
Εισαγωγή στην SQL
 
Wordpress administrator home-page
Wordpress administrator home-pageWordpress administrator home-page
Wordpress administrator home-page
 
Photoshop levels πολύ φωτεινή εικόνα
Photoshop levels πολύ φωτεινή εικόναPhotoshop levels πολύ φωτεινή εικόνα
Photoshop levels πολύ φωτεινή εικόνα
 
Photoshop curves και levels σε πολύ σκοτεινή εικόνα
Photoshop curves και levels σε πολύ σκοτεινή εικόναPhotoshop curves και levels σε πολύ σκοτεινή εικόνα
Photoshop curves και levels σε πολύ σκοτεινή εικόνα
 
Εγκατάσταση tux-paint
Εγκατάσταση tux-paintΕγκατάσταση tux-paint
Εγκατάσταση tux-paint
 
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webexΟδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
Οδηγίες για την εξ αποστάσεως εκπαίδευση με το webex
 
Ασφάλεια στο webex
Ασφάλεια στο webexΑσφάλεια στο webex
Ασφάλεια στο webex
 
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphoneΣύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
Σύνδεση εκπαιδευόμενου στο Webex μέσω smartphone
 
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστήΣύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
Σύνδεση εκπαιδευόμενου στο Webex μέσω υπολογιστή
 
Πως να κάνετε activate το Webex
Πως να κάνετε activate το WebexΠως να κάνετε activate το Webex
Πως να κάνετε activate το Webex
 
GDPR GAP Analysis
GDPR GAP AnalysisGDPR GAP Analysis
GDPR GAP Analysis
 
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένωνΕκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
Εκτίμηση αντίκτυπου σχετικά με την προστασία δεδομένων
 
Χαρτογράφηση ροής δεδομένων Data Flow Mapping
Χαρτογράφηση ροής δεδομένων Data Flow MappingΧαρτογράφηση ροής δεδομένων Data Flow Mapping
Χαρτογράφηση ροής δεδομένων Data Flow Mapping
 
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας ΔεδομένωνΗ λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
Η λίστα ελέγχου συμβατότητας με το Γενικό Κανονισμο προστασίας Δεδομένων
 

Recently uploaded

Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 

Recently uploaded (20)

Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 

Χρήση Vba για την πρόσβαση σε βάση δεδομένων

  • 2. Sub test_() 'Declaring the necessary variables. Dim con As Object Dim rs As Object Dim sql As String Dim myValues() As String Dim i As Integer Dim j As Integer
  • 4. On Error Resume Next 'Create the ADODB connection object. Set con = CreateObject("ADODB.connection") 'Check if the object was created. If Err.Number <> 0Then MsgBox "Connection was not created!", vbCritical, "Connection error" Exit Sub End If On Error GoTo 0
  • 5. 'Open the connection. 'Όλα σε μια γραμμή: con.Open "Provider=Microsoft.ACE.OLEDB.12.0; Data Source= C:UsersnikosDesktopdbnikos.accdb;"
  • 6. 'Create the SQL statement to read the file. Filter all the data from Canada. 'Note that the filename is used instead of the table name. sql = "SELECT * FROM nikos"
  • 7. On Error Resume Next 'Create the ADODB recordset object. Set rs = CreateObject("ADODB.recordset") 'Check if the object was created. If Err.Number <> 0Then MsgBox "Connection was not created!", vbCritical, "Connection error" Exit Sub End If On Error GoTo 0
  • 8. 'Set thee cursor location. rs.CursorLocation = 3 'adUseClient on early binding rs.CursorType = 1 'adOpenKeyset on early binding 'Open the recordset. rs.Open sql, con 'Redim the table that will contain the filtered data. ReDim myValues(rs.RecordCount, 4)
  • 9. 'Loop through the recordset and pass the selected values to the array. i = 1
  • 10. If Not (rs.EOFAnd rs.BOF)Then 'Go to the first record. rs.MoveFirst Do Until rs.EOF =True myValues(i, 1) = rs!onoma myValues(i, 2) = rs!onoma myValues(i, 3) = rs!onoma myValues(i, 4) = rs!onoma 'Move to the next record. rs.MoveNext i = i + 1 Loop Else
  • 11. Else 'Close the recordet and the connection. rs.Close con.Close 'Release the objects. Set rs = Nothing Set con = Nothing 'Enable the screen. Application.ScreenUpdating =True 'In case of an empty recordset display an error. MsgBox "There are no records in the recordset!", vbCritical, "No Records" Exit Sub End If
  • 12. 'Write the array in the sheet. 'Sheet1.Activate For i = 1To UBound(myValues) For j = 1To 4 Cells(i + 1, j) = myValues(i, j) Next j Next i
  • 13. 'Close the recordet and the connection. rs.Close con.Close 'Release the objects. Set rs = Nothing Set con = Nothing
  • 14. 'Adust the columns width. Columns("A:D").EntireColumn.AutoFit 'Enable the screen. Application.ScreenUpdating =True
  • 15. 'Inform the user that the macro was executed successfully. MsgBox "The values were read from recordset successfully!", vbInformation, "Done" End Sub