question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

plsql extend sql.But plsql before sql to define.

See original GitHub issue

My npm package is 1.15.0. I install prism package used cnpm.

In prism.js, the line 5392 is the code what plsql language extend sql start define. image

but the sql language defined by line 6912 image

So when I import prism to my code. I will get this error in console. image image

How to resolve this problem.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:8 (5 by maintainers)

github_iconTop GitHub Comments

5reactions
RunDevelopmentcommented, Nov 23, 2018

@colshacol You have to import import "prismjs/components/prism-markup"; markup before JSX (and change the highlighted language to jsx) and it will work.

0reactions
RunDevelopmentcommented, Jan 14, 2021

@cuongdaovan This cause of the issue was that Prism languages can depend on other languages, so it might not be obvious what languages have to be loaded in what order. The solution for this issue is to not import language files directly yourself. Either use a build from our download page or import Prism via another support way.

Read more comments on GitHub >

github_iconTop Results From Across the Web

6 Performing SQL Operations from PL/SQL - Oracle Help Center
By extending SQL, PL/SQL offers a unique combination of power and ease of use. You can manipulate Oracle data flexibly and safely because...
Read more >
What is PL/SQL (procedural language extension to Structured ...
In Oracle database management, PL/SQL is a procedural language extension to Structured Query Language (SQL). The purpose of PL/SQL is to combine database ......
Read more >
Collection Method: EXTEND Procedure In Oracle Database
After PL/SQL Collection Method DELETE, EXTEND procedure in Oracle database is the second one on the list. We have used this procedure time ......
Read more >
PL/SQL Collections and Records - Intellipaat
Even when columns are added to the table, your code continues to work. You can build a view or declare a cursor to...
Read more >
5 Using PL/SQL Collections and Records
The most efficient way to pass collections to and from the database server is to set up data values in associative arrays, then...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found