
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@sqlrooms/data-table
Advanced tools
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
npm install @sqlrooms/data-table
# or
yarn add @sqlrooms/data-table
import {DataTablePaginated} from '@sqlrooms/data-table';
function MyDataTable() {
const data = [
{id: 1, name: 'Alice', age: 28},
{id: 2, name: 'Bob', age: 34},
{id: 3, name: 'Charlie', age: 42},
// More data...
];
const columns = [
{accessorKey: 'id', header: 'ID'},
{accessorKey: 'name', header: 'Name'},
{accessorKey: 'age', header: 'Age'},
];
return (
<DataTablePaginated
data={data}
columns={columns}
pageSize={10}
enableSorting
enableFiltering
/>
);
}
import {QueryDataTable} from '@sqlrooms/data-table';
import {useSql} from '@sqlrooms/duckdb';
function QueryResultsTable() {
const {data, isLoading, error} = useSql({
query:
'SELECT id, name, email, created_at FROM users ORDER BY created_at DESC',
});
if (isLoading) return <div>Loading...</div>;
if (error) return <div>Error: {error.message}</div>;
if (!data) return null;
return <QueryDataTable data={data} />;
}
import {useArrowDataTable} from '@sqlrooms/data-table';
import {Table} from 'apache-arrow';
function ArrowTable({arrowTable}: {arrowTable: Table}) {
const {columns, data} = useArrowDataTable(arrowTable);
return <DataTablePaginated columns={columns} data={data} pageSize={25} />;
}
For more information, visit the SQLRooms documentation.
FAQs
A high-performance data table component library for SQLRooms applications. This package provides flexible and feature-rich table components for displaying and interacting with large datasets, with special support for Apache Arrow data structures.
We found that @sqlrooms/data-table demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.