You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the schema by using the following code:
async function getSchema(connection) {
return await connection.schema(20, [null, null]);
}
I really want to use:
async function getSchema(connection) {
return await connection.schema(20, [null, null, null, "TABLE"]);
}
to return just tables, but using the third null returns an empty array because the TABLE_NAME is not null, what is the right syntax here?
I realise this is for reporting issues, but I can't find where to ask general use questions.
The text was updated successfully, but these errors were encountered:
I am getting the schema by using the following code:
async function getSchema(connection) {
return await connection.schema(20, [null, null]);
}
I really want to use:
async function getSchema(connection) {
return await connection.schema(20, [null, null, null, "TABLE"]);
}
to return just tables, but using the third null returns an empty array because the TABLE_NAME is not null, what is the right syntax here?
I realise this is for reporting issues, but I can't find where to ask general use questions.
The text was updated successfully, but these errors were encountered: