Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Server ended the connection #187

Closed
Seyronh opened this issue Jan 2, 2025 · 3 comments
Closed

Server ended the connection #187

Seyronh opened this issue Jan 2, 2025 · 3 comments
Assignees
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@Seyronh
Copy link

Seyronh commented Jan 2, 2025

Maybe this is not the right site for this error but i cant found a solution

Current Behavior

await this.database.sqlSELECT Titulo FROM Libros ORDER BY Titulo ASC LIMIT 25; //This works well
await await this.database.sqlSELECT * FROM Libros WHERE Titulo = ${titleinput}; //This throws an error

Expected Behavior

await this.database.sqlSELECT Titulo FROM Libros ORDER BY Titulo ASC LIMIT 25; //This works well
await await this.database.sqlSELECT * FROM Libros WHERE Titulo = ${titleinput}; //Works well

Steps to Reproduce the Problem

1.Execute select query

Environment

  • Version: 1.0.354
  • Platform: Linux
  • Node.js Version: 18.19.1
  • Bun version: 1.1.42

Throwed Error

processCommandsFinish - error 9 | /** Default tls connection port /
10 | exports.DEFAULT_PORT = 8860;
11 | /
* Custom error reported by SQLiteCloud drivers /
12 | class SQLiteCloudError extends Error {
13 | constructor(message, args) {
14 | super(message);
^
SQLiteCloudError: Server ended the connection
at new SQLiteCloudError (/home/ubuntu/BookNest/node_modules/@sqlitecloud/drivers/lib/drivers/types.js:14:9)
at /home/ubuntu/BookNest/node_modules/@sqlitecloud/drivers/lib/drivers/connection-tls.js:114:44
at emit (node:events:72:22)
at endReadableNT (node:stream:2211:47)
9 | /
* Default tls connection port /
10 | exports.DEFAULT_PORT = 8860;
11 | /
* Custom error reported by SQLiteCloud drivers */
12 | class SQLiteCloudError extends Error {
13 | constructor(message, args) {
14 | super(message);
^
SQLiteCloudError: Server ended the connection
at new SQLiteCloudError (/home/ubuntu/BookNest/node_modules/@sqlitecloud/drivers/lib/drivers/types.js:14:9)
at /home/ubuntu/BookNest/node_modules/@sqlitecloud/drivers/lib/drivers/connection-tls.js:114:44
at emit (node:events:72:22)
at endReadableNT (node:stream:2211:47)
Bun v1.1.42 (Linux x64)

@Seyronh Seyronh added the bug Something isn't working label Jan 2, 2025
@Seyronh Seyronh closed this as completed Jan 2, 2025
@Seyronh Seyronh reopened this Jan 2, 2025
@Seyronh
Copy link
Author

Seyronh commented Jan 2, 2025

Okey it happens randomly and i dont know why it starts working and later it stops working

this is my code to connect every time i want to use sql i use SqlManager.getInstance() and then use the corresponding methods

export class SqlManager {
	private static instance: SqlManager;
	private database: Database;
	public static getInstance(): SqlManager {
		if (!SqlManager.instance) {
			SqlManager.instance = new SqlManager();
		}
		return SqlManager.instance;
	}
	public constructor() {
		this.database = new Database({
			connectionstring: process.env.SQLCLOUD_CONNECTION_STRING,
		});
	}
       public async getAllBooks(): Promise<Book[]> {
		const books = await this.database.sql`SELECT * FROM Libros`;

		return books.map((e) => {
			return convertToBook(e);
		});
	}
	...

@danielebriggi
Copy link
Member

await this.database.sqlSELECT Titulo FROM Libros ORDER BY Titulo ASC LIMIT 25; //This works well
await await this.database.sqlSELECT * FROM Libros WHERE Titulo = ${titleinput}; //This throws an error

what you report is the expected behavior and as you wrote later it seems to work but not always. Can you please go to the dashboard, click on the question mark icon on the right corner and send us the reference of this ticket and your project Id? in this way can see if there are issue on your node. Thank you

@danielebriggi danielebriggi added the help wanted Extra attention is needed label Jan 7, 2025
@danielebriggi danielebriggi self-assigned this Jan 7, 2025
@danielebriggi
Copy link
Member

we improved the connection management in the recent version of the driver. They should have fixed your issue.
Remember also to not share the connection between requests. If the connection is closed the instance is recreated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants