Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/LittleDB/LittleDB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ String getText(SelectData_t* selectData, String colName) {
return "";
}

// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();

Expand Down Expand Up @@ -216,7 +216,7 @@ int32_t getInt32(SelectData_t* selectData, String colName) {
return 0;
}

// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();

Expand Down Expand Up @@ -394,7 +394,7 @@ int8_t findRowWithAnyField(
}

while(schemFile.available() > 0) {
// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();

Expand Down Expand Up @@ -563,7 +563,7 @@ int8_t insertDataToBytes(File schemFile, String tblName, String queryValues) {
// first read schema, then find that column in query
int valueStartIndex=0;
while(schemFile.available() > 0) {
// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();
// get from space until end of string which should be column type
Expand Down Expand Up @@ -667,7 +667,7 @@ int8_t updateRowWithID(
String changeColType = "";

while(schemFile.available() > 0) {
// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();

Expand Down Expand Up @@ -934,7 +934,7 @@ int8_t execSelect(String query) {
}
String colTypeFromSchem = "";
while(schemFile.available() > 0) {
// read schem until , which seprates two columns
// read schem until , which separates two columns
String colFromSchem = schemFile.readStringUntil(',');
colFromSchem.trim();

Expand Down