#Importing ballerina/mysql
1 messages · Page 1 of 1 (latest)
Only the packages in the local central repository are shown as a suggestion in the VS code. Since you did not pulled this package yet, you are not getting the suggestions. You could try the following approaches:
- Manually pull the package using the following command and restart the VSCode
bal pull ballerinax/mysql
- Simply add the import statement. This will show an
unresolved moduleerror if the package is not pulled before. You can click on theQuick Fixin the VSCode to pull the package
import ballerinax/mysql;