Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i view a columns entire content in Chrome Dev Tools -> Web SQL Database

Chrome Dev Tools support querying a web sql database but the result is shown in a table that cuts off strings that are too long with ellipsis (...)

How can i view the entire columns content? Because of the cutoff a ctrl-a selection + copy does not work

like image 920
AdrianLoer Avatar asked Jul 02 '15 09:07

AdrianLoer


People also ask

How do I view SQL queries in Chrome?

Click the Sources tab to open the Application panel. Expand the Web SQL section to view databases and tables.

How do I view session variables in Chrome?

# View sessionStorage keys and valuesClick the Application tab to open the Application panel. Expand the Session Storage menu. Click a domain to view its key-value pairs. Click a row of the table to view the value in the viewer below the table.


1 Answers

Clicking three times on the value to select it and copying it seems to be working:

Chrome DevTools - select websql item value

like image 119
Konrad Dzwinel Avatar answered Oct 22 '22 01:10

Konrad Dzwinel