Lines Matching refs:l
279 char const *co, *l, *r; in firebird_handle_quoter() local
298 for (l = unquoted; (r = strchr(l,'\'')); l = r+1) { in firebird_handle_quoter()
299 strncpy(c, l, r-l+1); in firebird_handle_quoter()
300 c += (r-l+1); in firebird_handle_quoter()
306 strncpy(c, l, *quotedlen-(c-*quoted)-1); in firebird_handle_quoter()
399 long l, pindex = -1; in firebird_alloc_prepare_stmt() local
427 for (l = in_quote = in_param = 0; l <= sql_len; ++l) { in firebird_alloc_prepare_stmt()
428 if ( !(in_quote ^= (sql[l] == '\''))) { in firebird_alloc_prepare_stmt()
430 switch (sql[l]) { in firebird_alloc_prepare_stmt()
434 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
441 … if ((in_param &= ((sql[l] >= 'A' && sql[l] <= 'Z') || (sql[l] >= 'a' && sql[l] <= 'z') in firebird_alloc_prepare_stmt()
442 … || (sql[l] >= '0' && sql[l] <= '9') || sql[l] == '_' || sql[l] == '-'))) { in firebird_alloc_prepare_stmt()
445 *ppname++ = sql[l]; in firebird_alloc_prepare_stmt()
456 *c++ = sql[l]; in firebird_alloc_prepare_stmt()
568 HMODULE l = GetModuleHandle("fbclient"); in firebird_handle_get_attribute() local
570 if (!l) { in firebird_handle_get_attribute()
573 info_func = (info_func_t)GetProcAddress(l, "isc_get_client_version"); in firebird_handle_get_attribute()
608 long i = 0, l, sqlcode = isc_sqlcode(s); in pdo_firebird_fetch_error_func() local
613 while ((sizeof(buf)>(i+2))&&(l = fb_interpret(&buf[i],(sizeof(buf)-i-2),&s))) { in pdo_firebird_fetch_error_func()
614 i += l; in pdo_firebird_fetch_error_func()