Questions tagged [prefixes]
47 questions
2
votes
1 answer
Use the same linq with different table prefixes
I have a webapplication that uses LINQ to connect to a database.
The problem is that I Only have 1 database, and I need a several copy's of the tables, 1 copy / client. Is it possible to make linq use a set of tables acording to their prefex ?

Dutchie
- 21
- 1
2
votes
1 answer
Using prefixes instead of extensions in CakePHP
I'm trying to implement REST and parseExtension like functionality in my app, running on CakePHP 2.
Instead of having URLs like http://myapp.dev/controller/action.json I would like to use http://myapp.dev/json/controller/action.
The reason for this…

GTF
- 8,031
- 5
- 36
- 59
1
vote
3 answers
Different table prefix for one table?
Hypothetically, let's say I had multiple installations of some odd MySQL/PHP driven software. They are the same software so the database table structure is the same cross all of the installs. What I want to do, is make the software use a different…

Australiya
- 11
- 2
1
vote
1 answer
Multiple common prefixes among different paths
Sorry for the title, my problem is as follows. I have a list of paths and I want to get multiple common prefixes. For example, given I have:
['/usr/local/lib/python2.7/dist-packages/pkg_name-0.1-py2.7.egg/pkg_name',
…

rubik
- 8,814
- 9
- 58
- 88
1
vote
1 answer
Slicing the prefix from the stem in Python
I want to slice the affixes from stem. I tried the suffixes with the following command and it was OK for 'dishes'. However when I want to do it with a prefix (for example, 'undo'), how can I define the prefix in Python to get the result of…

Oliver
- 13
- 2
1
vote
1 answer
Check all the commands prefix with C-c
I desire to review all the key-sequences with prefix "C-c"
Issue C-c, it prompts
and remind that C-h C-n to reference the next page.
I want to view them all simultaneously within a single buffer and tried to C-x 1 with intention of see them in a…

AbstProcDo
- 19,953
- 19
- 81
- 138
1
vote
0 answers
Perspective doesn't work on mozilla firefox?
I have got tricky question. Maybe somebody knows why the perspective doesn't work on firefox, but it works properly on chrome for example.
Here is some css I have used:
@mixin perspective-parallax{
-webkit-perspective: 100px;
-moz-perspective:…

Blosom
- 111
- 2
- 12
1
vote
0 answers
Website made on CSS Grid Layout, Prefixes issues on Firefox
I made a website, project using CSS Grid Layout. Everything looks nice on Chrome and Safari, but on Firefox it messes up, probably because of the prefixes.
For previous projects I used an tool that auto generates those prefixes, but with CSS Grid…

Distortion
- 309
- 2
- 3
- 12
1
vote
1 answer
1
vote
1 answer
XML namespaces, why are they neccessary for prefixes?
So I've been reading about namespace on w3schools and I understand they are to uniquely identify an element. But what is the point of having namespaces if you have to have prefixes along side them. Are you always required to have prefixes with…

Uriel Katz
- 319
- 1
- 8
- 21
1
vote
1 answer
Dojo 1.8 Build System - How to set prefixes/paths?
I'm struggling with the Dojo 1.8 build system. I'm trying to use dojo/text!templates/SomeView.html to source html from the url myapp/tmpl/SomeView.html:
//FILE: SomeView.js
define(["dojo/_base/declare", "dojo/text!templates/SomeView.html", ...
…

Kenny
- 41
- 1
- 3
0
votes
1 answer
What is the best way to represent a category hierarchy using term prefixes in Xapian?
Assume I have the following example hierarchy:
US
Michigan
Detroit
Grand Rapids
Lansing
Minnesota
Grand Rapids
Minneapolis
St Paul
Ohio
Columbus
Grand Rapids
Sandusky
I see two ways that I could index a “Grand Rapids, Michigan” document…

Jim Razmus II
- 11
- 3
0
votes
1 answer
MSSQL avoid multiple prefixes by using alias
I am using al lot of sql queries and tyred of typing the complete prefixes of
[LINKED_SERVER_ALIAS].[LINKED_SERVER_ON_LINKED_SERVER].[DATABASEPATH].[SCHMEMA].TABLE
No way to change the serverstructure or direct login to linked server on another…

rm8019
- 3
- 3
0
votes
1 answer
How to mapping prefixes to nodes in Jena SDB
After numerous attempts, I entered triple and prefixes data into SDB through add (Resource, Property, String) and setNsPrefix (ns, prefix). However, only hash, lex, and type for triple are stored in nods.
Is it possible to mapping the information of…

user20297975
- 129
- 8
0
votes
1 answer
How to add and modify prefix in Java, using String arrays?
The essence of the problem is:
Implement a public static addPrefix() method that takes an array of strings and a string prefix as input and returns a new array in which the given prefix is added to each element of the original array. A space is…

Pete Alexandrovich
- 29
- 4