skip to Main Content

Pymongo MongoDB SSL Certificate Expired Error

I am building an application using MongoDB Atlas as the database and Django REST Framework on the backend. I'm trying to initiate the connection between the two, however, I keep getting this error back: Error connecting to MongoDB: 'ag-lfgx9hg-shard-00-02.glqs5bt.mongodb.net:27017: [SSL:…

VIEW QUESTION

delete multiple rows in mysqldb

How can we optimize the delete query. delete FROM student_score WHERE lesson_id IS NOT null AND id NOT IN(SELECT MaxID FROM temp) ORDER BY id LIMIT 1000 This select statement return "SELECT MaxID FROM temp" 35k lines and temp is…

VIEW QUESTION

check of myFinal == null don't work in flutter

my Final declaration check if it's null don't work in flutter if (extractedData == null) { return; } Future<void> fetchAndSetOrders() async { const url = 'https://flutter-update.firebaseio.com/orders.json'; final response = await http.get(url); final List<OrderItem> loadedOrders = []; final extractedData = json.decode(response.body)…

VIEW QUESTION
Back To Top
Search